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.