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?
|
|
|
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. |
||||
|
|
|
tee is a identity filter, it can output result to stdout and save it:
|
||||
|
|