From 965fef739c12588567fb2c47ac14174cf09fa828 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sat, 9 Feb 2019 18:48:38 +0100 Subject: [PATCH] docs/tutorial: Remove mention of caret (^) While this is still technically included, the tutorial should not steer people towards it. [ci skip] --- doc_src/tutorial.hdr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc_src/tutorial.hdr b/doc_src/tutorial.hdr index 07b2a6387..898e43a64 100644 --- a/doc_src/tutorial.hdr +++ b/doc_src/tutorial.hdr @@ -172,10 +172,10 @@ You can pipe between commands with the usual vertical bar: 1 2 12 \endfish -stdin and stdout can be redirected via the familiar < and >. Unlike other shells, stderr is redirected with a caret ^ +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 ^ ~/errors.txt +>_ grep fish < /etc/shells > ~/output.txt 2> ~/errors.txt \endfish