Scripting

From Wikifications
Revision as of 19:16, 30 December 2005 by Dre (Talk | contribs)

Jump to: navigation, search

Redirection:

>      Redirect standard output
2>     Redirect standard error
2>&1   Redirect standard error to standard output
<      Redirect standard input
|      Pipe standard output to another command
>>     Append to standard output
2>&1|  Pipe standard output and standard error to another command
|&     Same as above