mirror of
https://github.com/cheat/cheat.git
synced 2024-12-18 18:55:06 +01:00
9 lines
263 B
Plaintext
9 lines
263 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
|
|
|
|
# To tee stdout to the terminal, and also pipe it into another program for further processing:
|
|
ls | tee /dev/tty | xargs printf "\033[1;34m%s\033[m\n"
|