Next | Unix Command Internals | 17 |
Here's another example:
ps | less
Now suppose you type !! | grep blah, which becomes
ps | less | grep blah
Ugh, now less is going to get in the way
The output will go into grep, so you won't see it
The prompts will also go into grep and confuse grep
It's all a big mess
Well, not really
Next | Copyright © 2003 M. J. Dominus |