 |
Handling positional parameters [Bash Hackers Wiki]
Parameter(s) Description $0 the first positional parameter, equivalent to argv[0] in C, see the first argument $FUNCNAME the function name (attention: inside a function, $0 is still the $0 of the shell, not the function name) $1 … $9 the argument list ele
wiki.bash-hackers.org |
 |