up vote 29 down vote favorite
18
share [g+] share [fb]

I have the below command line argument which will print the output of aaa.sh to the screen while also writing stdout to bbb.out; however I would also like to write stderr to a file ccc.out. Any suggestions on how to modify the below piece? Thanks!

./aaa.sh | tee ./bbb.out

Update: stdout and stderr should still both be printed to the screen, regardless.

link|improve this question

1  
To clarify -- do you want stderr to go to the screen as well as the file? – Charles Duffy Mar 28 '09 at 2:32
I did, I will edit my post to clarify that. I do believe lhunath's solution will suffice. Thanks for the help all! – jparanich Mar 28 '09 at 16:28
feedback

4 Answers

up vote 43 down vote accepted

I'm assuming you want to still see STDERR and STDOUT on the terminal. You could go for Josh Kelley's answer, but I find keeping a tail around in the background which outputs your log file very hackish and cludgy. Notice how you need to keep an exra FD and do cleanup afterward by killing it and technically should be doing that in a trap '...' EXIT.

There is a better way to do this, and you've already discovered it: tee.

Only, instead of just using it for your stdout, have a tee for stdout and one for stderr. How will you accomplish this? Process substitution and file redirection:

command > >(tee stdout.log) 2> >(tee stderr.log >&2)

Let's split it up and explain:

> >(..)

>(...) (process substitution) creates a FIFO and lets tee listen on it. Then, it uses > (file redirection) to redirect the STDOUT of command to the FIFO that your first tee is listening on.

Same thing for the second:

2> >(tee stderr.log >&2)

We use process substitution again to make a tee process that reads from STDIN and dumps it into stderr.log. tee outputs its input back on STDOUT, but since its input is our STDERR, we want to redirect tee's STDOUT to our STDERR again. Then we use file redirection to redirect command's STDERR to the FIFO's input (tee's STDIN).

See http://mywiki.wooledge.org/BashGuide/InputAndOutput

Process substitution is one of those really lovely things you get as a bonus of choosing bash as your shell as opposed to sh (POSIX or Bourne). In sh, you'd have to do things manually:

out="${TMPDIR:-/tmp}/out.$$" err="${TMPDIR:-/tmp}/err.$$"
mkfifo "$out" "$err"
trap 'rm "$out" "$err"' EXIT
tee stdout.log < "$out" &
tee stderr.log < "$err" >&2 &
command >"$out" 2>"$err"
link|improve this answer
Yep you are correct in your assumption, excellent help! – jparanich Mar 28 '09 at 16:21
I tried to get process substitution to work but wasn't doing it right. This is a much simpler solution than mine. Thanks. – Josh Kelley Mar 28 '09 at 21:47
Thanks, fantastic advice. My bash-fu just improved dramatically. – Teemu Kurppa Dec 2 '09 at 13:07
Awesome! Any idea how to do this for Bourne Shell? – l0b0 Nov 10 '10 at 11:16
The above URL is broken. Try: mywiki.wooledge.org/BashGuide/… – BobC Jan 22 '11 at 3:40
show 4 more comments
feedback

To redirect stderr to a file, display stdout to screen, and also save stdout to a file:

./aaa.sh 2>ccc.out | tee ./bbb.out

EDIT: To display both stderr and stdout to screen and also save both to a file, you can use bash's I/O redirection:

#!/bin/bash

# Create a new file descriptor 4, pointed at the file
# which will receive stderr.
exec 4<>ccc.out

# Also print the contents of this file to screen.
tail -f ccc.out &

# Run the command; tee stdout as normal, and send stderr
# to our file descriptor 4.
./aaa.sh 2>&4 | tee bbb.out

# Clean up: Close file descriptor 4 and kill tail -f.
exec 4>&-
kill %1
link|improve this answer
I expect that the user wants stderr to go to their console in addition to the file, though such wasn't explicitly specified. – Charles Duffy Mar 28 '09 at 2:37
I should have been clearer, I did want stderr to the screen too. I still enjoyed Josh Kelley's solution but find lhunath's to suit my needs more. Thanks guys! – jparanich Mar 28 '09 at 16:24
feedback

why not simply:

./aaa.sh 2>&1 | tee -a log

This simply redirects stdout to stderr, so tee echoes both to log and to screen. Maybe I'm missing something, because some of the other solutions seem really complicated.

link|improve this answer
Indeed, they are complicated. I am wondering this myself. – Sridhar Ratnakumar Aug 29 '11 at 20:59
1  
That works fine if you want both stdout (channel 1) and stderr (channel 2) logged to the same file (a single file containing the mixture of both stdout and sterr). The other, more complicated solution allows you to separate stdout and stderr into 2 different files (stdout.log and stderr.log, respectively). Sometimes that is important, sometimes it's not. – Tyler Rick Nov 17 '11 at 18:55
The other solutions are far more complicated than necessary in many cases. This one works perfectly for me. – dkamins Nov 30 '11 at 5:50
feedback

If using bash:

# Redirect standard out and standard error separately
% cmd >stdout-redirect 2>stderr-redirect

# Redirect standard error and out together
% cmd >stdout-redirect 2>&1

# Merge standard error with standard out and pipe
% cmd 2>&1 |cmd2

Credit (not answering from the top of my head) goes here: http://www.cygwin.com/ml/cygwin/2003-06/msg00772.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.