Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

$1 is the first argument.
$@ is all of them.

How can I find the last argument passed to a shell script?

share|improve this question
bash? csh? ksh? sh? – John Weldon Dec 6 '09 at 0:01
I was using bash, but the more portable solution the better. – Thomas Dec 6 '09 at 0:21
2  
1  
Wow! A lot of complicated answers here. For simplest solution for bash 3.0 or greater, see "$BASH_ARGV" answer below. – Kevin Little Mar 13 '10 at 19:50

17 Answers

up vote 31 down vote accepted

This is a bit of a hack:

for last; do true; done
echo $last

This one is also pretty portable (again, should work with bash, ksh and sh) and it doesn't shift the arguments, which could be nice.

It uses the fact that for implicitly loops over the arguments if you don't tell it what to loop over, and the fact that for loop variables aren't scoped: they keep the last value they were set to.

share|improve this answer
awesome solution! – Michał Šrajer Feb 1 at 15:43
1  
There are POXIS shells without true built-in (see: pubs.opengroup.org/onlinepubs/009695399/idx/sbi.html), so I suggest to use comma instead of true. – Michał Šrajer Feb 1 at 16:00
1  
@MichałŠrajer, I think you meant colon and not comma ;) – Paweł Nadolski Feb 26 at 8:24

This is Bash-only:

echo "${@: -1}"
share|improve this answer
8  
Also works in ksh. – Dennis Williamson Nov 9 '10 at 2:28
8  
Also works in zsh. – g33kz0r Oct 27 '11 at 6:43

The simplest answer for bash 3.0 or greater is

_last=${!#}       # *indirect reference* to the $# variable
# or
_last=$BASH_ARGV  # official built-in (but takes more typing :)

That's it.

$ cat lastarg
#!/bin/bash
# echo the last arg given:
_last=${!#}
echo $_last
_last=$BASH_ARGV
echo $_last
for x; do
   echo $x
done

Output is:

$ lastarg 1 2 3 4 "5 6 7"
5 6 7
5 6 7
1
2
3
4
5 6 7
share|improve this answer

Use indexing combined with length of:

echo ${@:${#@}} 
share|improve this answer
Only works in Bash, but a good answer – Craig Trader Dec 6 '09 at 0:15
Also works in ksh. – Dennis Williamson Nov 9 '10 at 2:29
4  
Shorter: echo ${@:$#} – Dennis Williamson Feb 28 '11 at 14:44

Expanding on Dennis Williamson’s answer

argtest ()
{  
  # Last argument
  echo ${@: -1:1}
  # Or simply
  echo ${@: -1}
  # Next to last argument
  echo ${@: -2:1}
}

Output

$ argtest The quick brown fox jumps
jumps
jumps
fox

The space is necessary so that it doesnt get interpreted as a default value.

share|improve this answer

This works in all POSIX-compatible shells:

eval last=\${$#}

Source: http://www.faqs.org/faqs/unix-faq/faq/part2/section-12.html

share|improve this answer
1  
See this comment attached to an older identical answer. – Dennis Williamson Jul 13 '12 at 12:21

If you are using Bash >= 3.0

echo ${BASH_ARGV[0]}
share|improve this answer
Also for next to last argument, do echo ${BASH_ARGV[1]} – Steven Penny Feb 22 '12 at 2:43

If you want to do it in a non-destructive way, one way is to pass all the arguments to a function and return the last one:

#!/bin/bash

last() {
        if [[ $# -ne 0 ]] ; then
            shift $(expr $# - 1)
            echo "$1"
        #else
            #do something when no arguments
        fi
}

lastvar=$(last "$@")
echo $lastvar
echo "$@"

pax> ./qq.sh 1 2 3 a b
b
1 2 3 a b

If you don't actually care about keeping the other arguments, you don't need it in a function but I have a hard time thinking of a situation where you would never want to keep the other arguments unless they've already been processed, in which case I'd use the process/shift/process/shift/... method of sequentially processing them.

I'm assuming here that you want to keep them because you haven't followed the sequential method. This method also handles the case where there's no arguments, returning "". You could easily adjust that behavior by inserting the commented-out else clause.

share|improve this answer
shift `expr $# - 1`
echo "$1"

This shifts the arguments by the number of arguments minus 1, and returns the first (and only) remaining argument, which will be the last one.

I only tested in bash, but it should work in sh and ksh as well.

share|improve this answer
4  
shift $(($# - 1)) - no need for an external utility. Works in Bash, ksh, zsh and dash. – Dennis Williamson Nov 9 '10 at 2:32
@Dennis: Nice! I didn't know about the $((...)) syntax. – Laurence Gonsalves Nov 11 '10 at 16:48

Found this when looking to separate the last argument from all the previous one(s). Whilst some of the answers do get the last argument, they're not much help if you need all the other args as well. This works much better:

heads=${@:1:$((${#@} - 1))}
tail=${@:${#@}}
share|improve this answer
1  
This is simpler (array slices are already an arithmetic context and # alone is sufficient): heads=${@:1:$# - 1}; tail=${@:$#} – Dennis Williamson Jul 13 '12 at 12:27
#! /bin/sh

next=$1
while [ -n "${next}" ] ; do
  last=$next
  shift
  next=$1
done

echo $last
share|improve this answer
This will fail if an argument is the empty string, but will work in 99.9% of the cases. – Thomas Dec 6 '09 at 0:10

A solution using eval:

last=$(eval "echo \$$#")

echo $last
share|improve this answer
4  
eval for indirect reference is overkill, not to mention bad practice, and a huge security concern (the value is not quote in echo or outside $(). Bash has a builtin syntax for indirect references, for any var: ! So last="${!#}" would use the same approach (indirect reference on $#) in a much safer, compact, builtin, sane way. And properly quoted. – MestreLion Aug 7 '11 at 16:28

Here is mine solution:

  • pretty portable (all POSIX sh, bash, ksh, zsh) should work
  • does not shift original arguments (shifts a copy).
  • does not use evil eval
  • does not iterate through the whole list
  • does not use external tools

Code:

ntharg() {
    shift $1
    echo $1
}
LAST_ARG=`ntharg $# "$@"`
share|improve this answer

The following will set LAST to last argument without changing current environment:

LAST=$({
   shift $(($#-1))
   echo $1
})
echo $LAST

If other arguments are no longer needed and can be shifted it can be simplified to:

shift $(($#-1))
echo $1

For portability reasons following:

shift $(($#-1));

can be replaced with:

shift `expr $# - 1`

Replacing also $() with backquotes we get:

LAST=`{
   shift \`expr $# - 1\`
   echo $1
}`
echo $LAST
share|improve this answer

After reading the answers above I wrote a Q&D shell script (should work on sh and bash) to run g++ on PGM.cpp to produce executable image PGM. It assumes that the last argument on the command line is the file name (.cpp is optional) and all other arguments are options.

#!/bin/sh
if [ $# -lt 1 ]
then
    echo "Usage: `basename $0` [opt] pgm runs g++ to compile pgm[.cpp] into pgm"
    exit 2
fi
OPT=
PGM=
# PGM is the last argument, all others are considered options
for F; do OPT="$OPT $PGM"; PGM=$F; done
DIR=`dirname $PGM`
PGM=`basename $PGM .cpp`
# put -o first so it can be overridden by -o specified in OPT
set -x
g++ -o $DIR/$PGM $OPT $DIR/$PGM.cpp
share|improve this answer

just google it http://www.google.com/search?rlz=1C1GGLS_enIL307IL307&sourceid=chrome&ie=UTF-8&q=unix+shell+print+last+argument

I liked this one:

echo $@ | awk '{ print $NF }'

Here is how it works:

#cat > t
echo $@ | awk '{ print $NF }'
#bash t a b c
c
#
share|improve this answer
You'll need to use quotes: "$@" – glenn jackman Dec 7 '09 at 14:08

$_ works perfectly for ksh shell.

share|improve this answer
It gives me "/usr/bin/ksh". – Dennis Williamson Nov 9 '10 at 2:27
$_ gives the last command used, not the last argument of current script. – MestreLion Aug 7 '11 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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