aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar Ashok <ScriptDevil@zoho.com>2015-10-11 18:47:26 +0530
committerGravatar Ashok <ScriptDevil@zoho.com>2015-10-11 18:47:26 +0530
commitf6f982226a4d16ed8e740a66fe9a505a8df86e8c (patch)
tree7707bda05ac9e00246d581feb59890fd4de921e4 /doc_src
parent98b33d7b6b166b0ead2d7006df26a5789300dacc (diff)
Removed misleading space in stderr redirection example
Diffstat (limited to 'doc_src')
-rw-r--r--doc_src/index.hdr.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in
index 0e5528f0..e9619f48 100644
--- a/doc_src/index.hdr.in
+++ b/doc_src/index.hdr.in
@@ -179,7 +179,7 @@ will call the `cat` program with the parameter 'foo.txt', which will print the c
Pipes usually connect file descriptor 1 (standard output) of the first process to file descriptor 0 (standard input) of the second process. It is possible use a different output file descriptor by prepending the desired FD number and then output redirect symbol to the pipe. For example:
\fish
-make fish 2> | less
+make fish 2>| less
\endfish
will attempt to build the fish program, and any errors will be shown using the less pager.