i looked through the help and couldnt find any about $* so maybe im thinking its a unsupported function.
But anyway. I noticed certian things when i was doing it.
such as
alias asd {
echo -a $*
echo -a -#1 $1-
echo -a $*
echo -a -#2 $1-
}
/asd a b c d e f
a
b
c
d
e
f
-#1 a b c d e f
-#2 a b c d e f
seems the second $* doesnt have anything to process, i think $* keeps a running total of what passed parameter its up to.
as
tokenize 32 a b c
echo -a $*
tokenize 32 q w e r t y
echo -a $*
Results in
a
b
c
r
t
y
I believe this command is way to unreliable to use ever!