Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/stdout_stderr_exit_codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Without the pipeline, Nushell will not do any redirection, allowing it to print

Another common stream that external applications often use to print error messages is stderr. By default, Nushell does not do any redirection of stderr, which means that by default it will print to the screen.

But you can do pass stderr to a command or a file if you want to:
But you can pass stderr to a command or a file if you want to:

- use `e>|` to pass stderr to next command.
- use `e> file` to redirect stderr to a file.
Expand Down