How can I get second argument from the end of arguments line in bash?

link|improve this question

Related: stackoverflow.com/questions/1853946/… – marcog Feb 28 '11 at 14:17
You've been a member for over a year and asked 16 questions without accepting any answers. Please go back and mark some of the answers as accepted. – Dennis Williamson Feb 28 '11 at 14:48
feedback

2 Answers

up vote 1 down vote accepted

one way in Bash

set -- ${@:(-2)}
echo $1

or simply

echo ${@:(-2):1}
link|improve this answer
The second one won't work if the argument contains a space. – Dennis Williamson Feb 28 '11 at 14:42
@Dennis, thks for the comment – kurumi Feb 28 '11 at 15:03
feedback

To print the second last argument use:

echo "${@:(-2):1}"
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.