Shell script

I'm having trouble passing multiple arguments on the command line individually through my script.

for var in "$@"
do
command

My program sees the command line as 1 character, not multiple.

I thought the "$@" would pass each argument through the script once.

Any suggestions?????

This works for me...

for i in $@
do
echo $i
done