Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send Output to Console AND File 2

Status
Not open for further replies.

Michael42

Programmer
Oct 8, 2001
1,454
US
Hello,

In a Bourne shell script on Solaris 8 I commonly use the below command to send the output of a command to a file:
Code:
mycommand >> /tmp/my.log

How can I send standard out and error to both the console AND a file?

Thanks,

Michael42
 
Look at the 'tee' command which does exactly this.

Ceci n'est pas une signature
Columb Healy
 
mycommand 2>&1 | tee -a /tmp/my.log

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Guys,

Thanks for pointing out the tee command. That is very useful! :)

Michael42
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top