1836623 Members
1903 Online
110102 Solutions
New Discussion

Command $@

 
SOLVED
Go to solution
Manuales
Super Advisor

Command $@

what is the meaning of $@?

Regards.
1 REPLY 1
Hein van den Heuvel
Honored Contributor
Solution

Re: Command $@

In what context?
I guess you are refering to a shell script.
In that case... RTFM!

man sh-posix

${parameter[subscript]}
Substitute the value of the parameter, if any.
:
If parameter is * or @, all the positional parameters, starting with 1, are substituted
(separated by a field separator character). See the "Quoting" subsection.


hth,
Hein.