$1 is the first argument.
$@ is all of them.
How can I find the last argument passed to a shell script?
|
|
This is a bit of a hack:
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 |
|||||||||||
|
|
This is Bash-only:
|
|||||||||
|
|
The simplest answer for bash 3.0 or greater is
That's it.
Output is:
|
|||
|
|
|
Use indexing combined with length of:
|
|||||||||
|
|
Expanding on Dennis Williamson’s answer
Output
The space is necessary so that it doesnt get interpreted as a default value. |
||||
|
|
|
This works in all POSIX-compatible shells:
Source: http://www.faqs.org/faqs/unix-faq/faq/part2/section-12.html |
|||||
|
|
If you are using Bash >= 3.0
|
|||
|
|
|
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:
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 |
||||
|
|
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. |
|||||||
|
|
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:
|
|||||
|
|
|||
|
|
A solution using
|
|||||
|
|
Here is mine solution:
Code:
|
||||
|
|
|
The following will set
If other arguments are no longer needed and can be shifted it can be simplified to:
For portability reasons following:
can be replaced with:
Replacing also
|
|||
|
|
|
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.
|
||||
|
|
|
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:
Here is how it works:
|
|||
|
|
|
$_ works perfectly for ksh shell. |
|||||
|