How to get the nth positional argument in bash?

Thanks.

Edit: I forgot to say but I meant that n is a variable.

link|improve this question

feedback

6 Answers

up vote 11 down vote accepted

Use Bash's indirection feature:

#!/bin/bash
n=3
echo ${!n}

Running that file:

$ ./ind apple banana cantaloupe dates

Produces:

cantaloupe

Edit:

You can also do array slicing:

echo ${@:$n:1}

but not array subscripts:

echo ${@[n]}  #  WON'T WORK
link|improve this answer
Can anyone give some explanation why ${@[n]} won't work? – Aleksander O Apr 14 at 23:06
feedback

If N is saved in a variable, use

eval echo \${$N}

if it's a constant use

echo ${12}

since

echo $12

does not mean the same!

link|improve this answer
feedback

$n       

link|improve this answer
feedback
$1 $2 ... $n

$0 contains the name of the script.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Read

Handling positional parameters

and

Parameter expansion

$0: the first positional parameter

$1 ... $9: the argument list elements from 1 to 9

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.