mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 23:51:09 +01:00
5 lines
109 B
Text
5 lines
109 B
Text
# To redirect stderr to stdout:
|
|
some-command 2>&1
|
|
|
|
# To redirect stderr to a file
|
|
some-command 2> errors.txt
|