Hi
The difference between $* and S@ is below,
$* Returns a single string (``$1, $2 ... $n'')
$@ Returns a sequence of strings (``$1'', ``$2'', ... ``$n'')
But i am not getting the scenario where to use $* and where to use $@
Please give some suggestion with practical example(sample section of script).
Thanks in advance.
Any suggestion is highly appriciated.
-Ashok
The difference between $* and S@ is below,
$* Returns a single string (``$1, $2 ... $n'')
$@ Returns a sequence of strings (``$1'', ``$2'', ... ``$n'')
But i am not getting the scenario where to use $* and where to use $@
Please give some suggestion with practical example(sample section of script).
Thanks in advance.
Any suggestion is highly appriciated.
-Ashok
Comment