I have to write a script, which will take all arguments and print them in reverse.
I\'ve made a solution, but find it very bad. Do you have a smarter idea?
you can use this one liner:
echo $@ | tr ' ' '\n' | tac | tr '\n' ' '