Say I have some command:
somecommand "$@"
What is the significance of $@? It must be some unix trickery that I'm not familiar with. Unfortunately, since its all punctuation, I can't google it either.
|
feedback
|
|
It's the current shell script's or function's parameters, individually quoted.
Given the following script:
This happens when executed:
| ||||
feedback
|