mirror of
https://github.com/cheat/cheat.git
synced 2024-11-10 21:26:49 +01:00
6 lines
109 B
Plaintext
6 lines
109 B
Plaintext
# To redirect stderr to stdout:
|
|
some-command 2>&1
|
|
|
|
# To redirect stderr to a file
|
|
some-command 2> errors.txt
|