Muthu
Answered On : Jun 2nd, 2005
Will display all the commandline arguments that are passed to the script

3 Users have rated as useful.
Login to rate this answer.
abhay
Answered On : Jul 5th, 2005
Its mainly used for showing up all params.
i.e - if you execute script in following way to which we are trying to pass 4 params
./test.sh 1 "hello world" 2 "test"
and if we print inside script
echo $*
it will print
null1 hello world 2 testnull

1 User has rated as useful.
Login to rate this answer.
akebno
Answered On : Jul 27th, 2005
$1: the 1st parameter
$2: the 2nd parameter
...
$*
All parameters in the command line
Login to rate this answer.
Raj
Answered On : Jul 29th, 2005
Yes, $* displays values of all positional parameters set
Login to rate this answer.
it is a questional parameter
Login to rate this answer.
It contains the actual arguments passed to a shell script
Login to rate this answer.
Contains the list of arguments passed to the function.
Login to rate this answer.