fix "are equivalent" with same example

This was introduced in 87eb073 when ^ redirection was removed from the
docs.
This commit is contained in:
Ashe Connor
2019-01-30 14:07:04 +11:00
committed by Fabian Homborg
parent d9d2ad1cd6
commit 09ca268d50

View File

@@ -166,7 +166,7 @@ Any file descriptor can be redirected in an arbitrary way by prefixing the redir
- To redirect output of FD N, write `N>DESTINATION`
- To append the output of FD N to a file, write `N>>DESTINATION_FILE`
Example: `echo Hello 2>output.stderr` and `echo Hello 2>output.stderr` are equivalent, and write the standard error (file descriptor 2) of the target program to `output.stderr`.
Example: `echo Hello 2>output.stderr` writes the standard error (file descriptor 2) of the target program to `output.stderr`.
\subsection piping Piping