docs/tutorial: Remove mention of caret (^)

While this is still technically included, the tutorial should not
steer people towards it.

[ci skip]
This commit is contained in:
Fabian Homborg 2019-02-09 18:48:38 +01:00
parent cfd9b52080
commit 0c706e45eb

View file

@ -172,10 +172,10 @@ You can pipe between commands with the usual vertical bar:
<outp> 1 2 12</outp>
\endfish
stdin and stdout can be redirected via the familiar &lt; and &gt;. Unlike other shells, stderr is redirected with a caret ^
stdin and stdout can be redirected via the familiar &lt; and &gt;. stderr is redirected with a &gt;2.
\fish{cli-dark}
>_ grep fish < /etc/shells > ~/output.txt ^ ~/errors.txt
>_ grep fish < /etc/shells > ~/output.txt 2> ~/errors.txt
\endfish