mirror of
https://github.com/cheat/cheat.git
synced 2024-12-19 03:05:06 +01:00
6 lines
111 B
Plaintext
6 lines
111 B
Plaintext
# To tee stdout to a file:
|
|
ls | tee outfile.txt
|
|
|
|
# To tee stdout and append to a file:
|
|
ls | tee -a outfile.txt
|