Multiple choice unix

The command which transcribes the standard input to the standard output and also makes a copy of the same in a file is

  1. tee

  2. tr

  3. sort

  4. grep

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The 'tee' command reads from standard input and writes to both standard output and one or more files simultaneously. It is commonly used in shell pipelines to 'split' the data stream, allowing you to view progress while saving the results to a file.