diff options
Diffstat (limited to 'Etc/FAQ.yo')
-rw-r--r-- | Etc/FAQ.yo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Etc/FAQ.yo b/Etc/FAQ.yo index dcb2ec579..7d4b86ec3 100644 --- a/Etc/FAQ.yo +++ b/Etc/FAQ.yo @@ -1763,7 +1763,7 @@ sect(Why is my output duplicated with `tt(foo 2>&1 >foo.out | bar)'?) actually see is that the output is going both to the pipe and into the file. To be more explicit, here's the same example with real commands: verb( - % { print output; print error >&2 } 2>&1 >foo.out | sed 's/error/erratic' + % { print output; print error >&2 } 2>&1 >foo.out | sed 's/error/erratic/' erratic output % cat foo.out |