mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 00:48:36 +01:00
6 lines
105 B
Text
6 lines
105 B
Text
|
To redirect stderr to stdout:
|
||
|
some-command 2>&1
|
||
|
|
||
|
To redirect stderr to a file
|
||
|
some-command 2> errors.txt
|