mirror of
https://github.com/sahinakkaya/til.git
synced 2025-04-19 17:22:07 +02:00
196 B
196 B
- Redirect stdout to one file and stderr to another file:
command > out 2>error
- Redirect stdout to a file
out
, and then redirect stderr to stdout:
command > out 2>&1