From 8e41e3337c4f2685505b82bbdf99d2b04125519e Mon Sep 17 00:00:00 2001 From: Jonathan Revah Date: Mon, 18 Feb 2019 15:50:05 -0500 Subject: [PATCH] small typo in the tutorial. stderr is redirected using 2> rather than >2 --- doc_src/tutorial.hdr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/tutorial.hdr b/doc_src/tutorial.hdr index 898e43a64..bce1349ab 100644 --- a/doc_src/tutorial.hdr +++ b/doc_src/tutorial.hdr @@ -172,7 +172,7 @@ You can pipe between commands with the usual vertical bar: 1 2 12 \endfish -stdin and stdout can be redirected via the familiar < and >. stderr is redirected with a >2. +stdin and stdout can be redirected via the familiar < and >. stderr is redirected with a 2>. \fish{cli-dark} >_ grep fish < /etc/shells > ~/output.txt 2> ~/errors.txt