Using tee to create a log

Startseite
Anhänge:
Nachricht
+ (text/plain)
Nachricht löschen
Nachricht beantworten
Autor: Kevin Buettner
Datum:  
Betreff: Using tee to create a log
On Jul 26, 1:29pm, Alan Dayley wrote:

> So, is there a version of tee that captures stderr too? Hmm... A
> programming project...


Just do

    somecommand 2>&1 | tee logfile


Kevin