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

With zsh I can get the fifth argument simply with $5. But what if 5 is a variable? I've come up with this way to print out the first five arguments by indexing (as opposed to just echo $1 $2 $3 $4 $5):

for i in {1..5}
do
  echo $(eval echo "\$$i")
done

But surely there must be a better way?


I know that there is much simpler ways to loop through all arguments. In my particular case I want to loop through the argument list backward. Help with that would be appreciated as well.

share|improve this question

2 Answers

up vote 1 down vote accepted

To iterate through the positional parameters, just use a for loop:

for x; do echo $x; done

To iterate through them in reverse:

for x in "${(Oa)@}"; do echo $x ; done

To reverse the parameters:

set "${(Oa)@}"
share|improve this answer
What does (0a) mean? Is it zsh specific? – Tarrasch Oct 8 '12 at 14:26
(Oa) is very much zsh specific. (It is the letter 0, not the number 0). The O means sort in descending order. The a means to use the array index as the sort key. man zshall for details. – William Pursell Oct 8 '12 at 14:29
Thank you very much. For others, man zshexpn gives the relevant manual chapters, explaining both O and a. – Tarrasch Oct 8 '12 at 15:04

In zsh (and zsh only, apparently) the @ is an array. Practically you can use it like this:

for i in {1..5}
do
  echo $@[i]
done

As for looping backwards I guess you can combine for i in {$#..1} with $@[i] but there might be a better way.

share|improve this answer

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.