How to get the nth positional argument in bash?
Thanks.
Edit: I forgot to say but I meant that n is a variable.
|
How to get the Thanks. Edit: I forgot to say but I meant that |
||||
|
|
|
Use Bash's indirection feature:
Running that file:
Produces:
Edit: You can also do array slicing:
but not array subscripts:
|
||||
|
|
|
If
if it's a constant use
since
does not mean the same! |
|||
|
|
|
As you can see in the Bash by Example, you just need to use the automatic variables $1, $2, and so on. $# is used to get the number of arguments. |
|||
|
|
|
Read Handling positional parameters and $0: the first positional parameter $1 ... $9: the argument list elements from 1 to 9 |
|||
|
|