The question says it all. Is there any way I can have standard output appear on my terminal screen and get inputted into a file as well?
I use tcsh on Linux.
The question says it all. Is there any way I can have standard output appear on my terminal screen and get inputted into a file as well?
I use tcsh on Linux.
$command | tee $output_file
man tee
for more information.