1
tee: Direct output to standard output and File
Posted by Joys of Programming on in Linux
With linux pipes, you can direct the output of one program as an input to the other. But using pipes, you can only direct the output to another program. But if you wish to direct the output to the standard output as well as to a file, you can still use tee. Take for example, [...]