Doc fix where wrong file was referenced in an example

This commit is contained in:
ridiculousfish 2013-05-12 00:44:41 -07:00
parent 7abf6c71ad
commit 47583877f1

View file

@ -163,7 +163,7 @@ Any file descriptor can be directed to a different output than its
default through a simple mechanism called a redirection.
An example of a file redirection is <code> echo hello \>output.txt</code>,
which directs the output of the echo command to the file error.txt.
which directs the output of the echo command to the file output.txt.
- To redirect standard input, write <code>\<SOURCE_FILE</code>
- To redirect standard output, write <code>\>DESTINATION</code>