PDA

View Full Version : [SOLVED] bash question



Diametric
January 15th, 2012, 01:19 AM
Hello,

Regarding positional parameters, is it fair to say that pos params $* and $@ are created "on the fly" and only exist when executing a script with arguments?

Thanks!

Telengard C64
January 15th, 2012, 01:39 AM
test$ echo $*

test$ set one two three
test$ echo $*
one two three
test$

Nope.

Diametric
January 15th, 2012, 02:45 AM
Awesome! Thanks for the quick reply.