Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
NAME
tee - read from standard input and write to standard output and file

SYNOPSIS
tee [OPTION] [FILE]

DESCRIPTION
Read from standard input and write to standard output. If a file name is specified the output will also be writen to the file.

OPTIONS
-a
Append to the given FILE, do not overwrite.

EXAMPLE
To read standard input & write to standard output
No Format
tee


      To read standard input & write to standard output & file
No Format
tee FileName


      To read standard input & write to standard output & append to file
No Format
tee -a FileName