tee Command Examples

Read from stdin and write to stdout and files (or commands). More information: https://www.gnu.org/software/coreutils/manual/html_node/tee-invocation.html.

echo "example" | tee {{path/to/file}}

echo "example" | tee {{[-a|--append]}} {{path/to/file}}

echo "example" | tee {{/dev/tty}} | {{xargs printf "[%s]"}}

echo "example" | tee >(xargs mkdir) >(wc -c)