1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 11:02:08 +02:00
tldr/pages/common/tee.md
Marco Bonelli 2599a6de48 Refactor: change "folder" to "directory" where needed.
This commit fixes every instance in which the word "folder" is
incorrectly used instead of "directory".
2019-02-13 20:51:04 +05:30

19 lines
606 B
Markdown

# tee
> Read from standard input and write to standard output and files (or commands).
- Copy standard input to each FILE, and also to standard output:
`echo "example" | tee {{FILE}}`
- Append to the given FILEs, do not overwrite:
`echo "example" | tee -a {{FILE}}`
- Print standard input to the terminal, and also pipe it into another program for further processing:
`echo "example" | tee {{/dev/tty}} | {{xargs printf "[%s]"}}`
- Create a directory called "example", count the number of characters in "example" and write "example" to the terminal:
`echo "example" | tee >(xargs mkdir) >(wc -c)`