first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

CMD: “Using command redirection operators”; technet

>

Writes the command output to a file or a device, such as a printer, instead of the Command Prompt window or a handle.

<

Reads the command input from a file, instead of reading input from the keyboard or a handle.

>>

Appends the command output to the end of a file without deleting the information that is already in the file.

>&

Writes the output from one handle to the input of another handle.

<&

Reads the input from one handle and writes it to the output of another handle.

|

Reads the output from one command and writes it to the input of another command. Also known as a pipe.

[http://technet.microsoft.com/en-us/library/cc772622%28WS.10%29.aspx]

mod date: 2009-09-23T23:59:39.000Z