2018. 10. 31.

Passing all arguments to other functions

Passing all arguments to other functions

using $@

ex)  run.sh
    # instead  
   oher_command $1 $2 ...
    # with
    other_command $@ 

!! That’s all.


October 31, 2018 at 12:30PM