eawedat: not quite, regarding pipes.
The | character separates multiple commands. In linux, pipes feed output to the next. I understand your point about similarity, but you're not using pipes so that you can retain output, you're using pipes *SPECIFICALLY* because you're in the editbox. I'm not sure if you got that from Riamus' reply, but you do not need to use | inside remote scripts.
Think about it this way: mIRC clears all internal state when a script ends. In other words, mIRC clears the $0, $1, $2 ... parameters after you run an alias. So if you have an alias like:
alias foo { echo -a $1 | echo -a $2 | echo -a $3 }
Typing /foo a b c will run those three echo statements and clear $1- after the command runs, because your script ended.
Now, because of the way the editbox works, a single line is a single script, so you can't separate commands within the same script with new lines. The following won't work:
Type /tokenize 32 a b c
Type /echo -a $1
Type /echo -a $2
Type /echo -a $3
When you type those commands, this is what mIRC does:
Type /tokenize 32 a b c
mIRC tokenizes a bc
mIRC clears $1-
Type /echo -a $1
mIRC echos something
mIRC clears $1-
Type /echo -a $2
mIRC echos something
mIRC clears $1-
Type /echo -a $3
mIRC echos something
mIRC clears $1-
It's clearing $1- after each line typed, because each line is a new script with new state.
This is why you need to type the commands within a single line, so mIRC sees this as a single "script" to be run. Because mIRC allows newlines and | to separate commands, you can use | to keep them all on the same line.
The following is considered "the same script" to mIRC:
//tokenize 32 a b c | echo -a $1 | echo -a $2 | echo -a $3
Because it is on one line.
It's not about the pipes, it's about the requirement of your script fitting into a single line. Pipes are just how you write scripts to fit in a single line, with multiple commands.