Multiple choice technology operating systems

Command which can be used to copy the contents to file and also display on screen

  1. tee

  2. > (Redirection operator)

  3. Redirection operator (>) and Standard Ouput ($1)
  4. All

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

The tee command reads from standard input and writes to both a file and standard output simultaneously, achieving both goals in one command. The > operator only redirects to a file without displaying; combining it with other output requires separate commands.