Which command allows you to simultaneously save the output to a file and display it on the screen?
Explanation
The 'tee' command reads from standard input and writes the output both to a file and to the terminal, allowing you to save and view the output at the same time. Other commands like 'more', 'cat', or 'grep' do not provide this dual functionality.