In Bash, I'd like to redirect stdout to a file (>> mylog.txt) but also see the stdout output on the screen..
How can I do it with bash?
|
In Bash, I'd like to redirect stdout to a file (>> mylog.txt) but also see the stdout output on the screen.. How can I do it with bash?
| |||
feedback
|
|
Use
will append the output of the command to the file and also show it on screen. | |||
|
feedback
|