Originally Posted By: Darwin_Koala
Code:
tokenize delimiter, string
<command> $*

e.g.
Code:
tokenize 32 this is a string
echo -a $*


First off $* is undocumented so it could be removed at any time without any notification.
Second, try doing multiple commands with $*. To do so, you have to write an alias.
Third, try doing something like:
Code:
tokenize 32 this is an example | if ($* == is) { echo -a $v1 }


I am SReject
My Stuff