From 09ca268d50b2100eec7c0639adeb97920ec8018a Mon Sep 17 00:00:00 2001 From: Ashe Connor Date: Wed, 30 Jan 2019 14:07:04 +1100 Subject: [PATCH] fix "are equivalent" with same example This was introduced in 87eb073 when ^ redirection was removed from the docs. --- doc_src/index.hdr.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in index 1b5d0d691..73d8ed6d9 100644 --- a/doc_src/index.hdr.in +++ b/doc_src/index.hdr.in @@ -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