Redirecting output twice

I want to redirect my output twice from a commandline

For example:

comp.reg $T_GDS_MASTER/bin.new $T_GDS_MASTER/bin.old > $T_GDS/log/comp.reg.out 2>&1

I want that command to also print to the screen. How can I do this?


The command that you are looking for is tee. The full syntax is here.


Have a look at tee - read from standard input and write to standard output and files. script -- make typescript of terminal session -- maybe of interest as well.