mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
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:
parent
cfd9b52080
commit
0c706e45eb
1 changed files with 2 additions and 2 deletions
|
@ -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 < 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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue