Size: 2336
Comment:
|
← Revision 30 as of 2025-01-22 23:50:25 ⇥
Size: 2119
Comment: adjust markup
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
Line 4: | Line 3: |
Use {{{${10} }}}instead of {{{$10}}}. This works for [[BASH]] and KornShell, but not for older BourneShell implementations. Another way to access arbitrary positional parameters after $9 is to use {{{for}}}, e.g. to get the last parameter: | Use `${10}` instead of `$10`. This works for [[BASH]] and KornShell and is standardized by [[POSIX]], but it doesn't work for older BourneShell implementations. Another way to access arbitrary positional parameters after $9 is to use `for`, e.g. to get the last parameter: |
Line 15: | Line 14: |
Line 32: | Line 32: |
This has the advantage of not "consuming" the arguments. If this is no problem, the {{{shift}}} command discards the first positional arguments: | This has the advantage of not "consuming" the arguments. If this is no problem, the `shift` command discards the first positional arguments: |
Line 38: | Line 39: |
Line 41: | Line 43: |
# Bourne | |
Line 42: | Line 45: |
shift $1 && echo "$1" | shift "$1" && echo "$1" |
Line 44: | Line 47: |
arg12=$(getarg 12 "$@") | arg12=`getarg 12 "$@"` |
Line 46: | Line 49: |
or to avoid the cost of a subshell, you can name the variable it should be written to: | |
Line 48: | Line 50: |
{{{ getargto() { # $1 is variable, $2 is argno local __="$1" && shift shift $1 && printf -v "$__" "$1" } getargto arg12 12 "$@" }}} |
|
Line 63: | Line 58: |
Although direct access to any positional argument is possible this way, it's seldom needed. The common alternative is to use {{{getopts}}} to process options (e.g. "-l", or "-o filename"), and then use either {{{for}}} or {{{while}}} to process all the remaining arguments in turn. An explanation of how to process command line arguments is available in [[BashFAQ/035|FAQ #35]], and another is found at http://www.shelldorado.com/goodcoding/cmdargs.html | Although direct access to any positional argument is possible this way, it's seldom needed. The common alternative is to use `getopts` to process options (e.g. "-l", or "-o filename"), and then use either `for` or `while` to process all the remaining arguments in turn. An explanation of how to process command line arguments is available in [[BashFAQ/035|FAQ #35]], and another is found at http://www.shelldorado.com/goodcoding/cmdargs.html |
How can I access positional parameters after $9?
Use ${10} instead of $10. This works for BASH and KornShell and is standardized by POSIX, but it doesn't work for older BourneShell implementations. Another way to access arbitrary positional parameters after $9 is to use for, e.g. to get the last parameter:
# Bourne for last do : # nothing done echo "last argument is: $last"
To get an argument by number, we can use a counter:
# Bourne n=12 # This is the number of the argument we are interested in i=1 for arg do if test $i -eq $n then argn=$arg break fi i=`expr $i + 1` done echo "argument number $n is: $argn"
This has the advantage of not "consuming" the arguments. If this is no problem, the shift command discards the first positional arguments:
shift 11 echo "the 12th argument is: $1"
and can be put into a helpful function:
# Bourne getarg() { # $1 is argno shift "$1" && echo "$1" } arg12=`getarg 12 "$@"`
In addition, bash and ksh93 treat the set of positional parameters as an array, and you may use parameter expansion syntax to address those elements in a variety of ways:
# Bash, ksh93 for x in "${@:(-2)}" # iterate over the last 2 parameters for y in "${@:2}" # iterate over all parameters starting at $2 # which may be useful if we don't want to shift
Although direct access to any positional argument is possible this way, it's seldom needed. The common alternative is to use getopts to process options (e.g. "-l", or "-o filename"), and then use either for or while to process all the remaining arguments in turn. An explanation of how to process command line arguments is available in FAQ #35, and another is found at http://www.shelldorado.com/goodcoding/cmdargs.html