mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 14:01:36 +01:00
8dda6a9241
Created cheatsheets package to store the default sheets.
6 lines
105 B
Plaintext
6 lines
105 B
Plaintext
To redirect stderr to stdout:
|
|
some-command 2>&1
|
|
|
|
To redirect stderr to a file
|
|
some-command 2> errors.txt
|