tee

Usage: tee [OPTION]... [FILE]...

Copy stdin to FILE(s), and also to stdout.

Options:

			-a	Append to the given FILEs, do not overwrite
		

Example:

			$ echo "Hello" | tee /tmp/foo
			Hello
			$ cat /tmp/foo
			Hello