vote up 2 vote down star
2

Is it possible to redirect all of the output of a Bourne shell script to somewhere, but with shell commands inside the script itself?

Redirecting the output of a single command is easy, but I want something more like this:

#!/bin/sh
if [ ! -t 0 ]; then
    # redirect all of my output to a file here
fi

# rest of script...

Meaning: if the script is run non-interactively (for example, cron), save off the output of everything to a file. If run interactively from a shell, let the output go to stdout as usual.

I want to do this for a script normally run by the FreeBSD periodic utility. It's part of the daily run, which I don't normally care to see every day in email, so I don't have it sent. However, if something inside this one particular script fails, that's important to me and I'd like to be able to capture and email the output of this one part of the daily jobs.

Update: Joshua's answer is spot-on, but I also wanted to save and restore stdout and stderr around the entire script, which is done like this:

# save stdout and stderr to file descriptors 3 and 4, then redirect them to "foo"
exec 3>&1 4>&2 >foo 2>&1

# ...

# restore stdout and stderr
exec 1>&3 2>&4
flag
Testing for $TERM is not the best way to test for interactive mode. Instead, test whether stdin is a tty (test -t 0). – Chris Jester-Young Nov 24 '08 at 16:31
In other words: if [ ! -t 0 ]; then exec >somefile 2>&1; fi – Chris Jester-Young Nov 24 '08 at 16:34

4 Answers

vote up 8 vote down check
exec > file
link|flag
I say also add 2>&1 to the end of that, just so stderr gets caught too. :-) – Chris Jester-Young Nov 24 '08 at 16:32
vote up 1 vote down

See here for all the goodness: http://tldp.org/LDP/abs/html/io-redirection.html

Basically what was said by Joshua.

exec > file redirects stdout to a specific file, exec < file replaces stdin by file, etc.

Its the same as usual but using exec (see man exec for more details).

link|flag
vote up 1 vote down

You can make the whole script a function like this:

main_function
{
do_things_here
}

then at the end of the script have this:

if [ -z $TERM ]
then
# if not run via terminal, log everything into a log file
main_function 2>&1 >> /var/log/my_uber_script.log
else
# run via terminal, only output to screen
main_function
fi

Alternatively, you may log everything into logfile each run and still output it to stdout by simply doing:

# log everything, but also output to stdout
main_function 2>&1 | tee -a /var/log/my_uber_script.log
link|flag
vote up 0 vote down

Addressing the question as updated.

#...part of script without redirection...

{
    #...part of script with redirection...
} > file1 2>file2 # ...and others as appropriate...

#...residue of script without redirection...

The braces '{ ... }' provide a unit of I/O redirection. The braces must appear where a command could appear - simplistically, at the start of a line or after a semi-colon. (Yes, that can be made more precise; if you want to quibble, let me know.)

You are right that you can preserve the original stdout and stderr with the redirections you showed, but it is usually simpler for the people who have to maintain the script later to understand what's going on if you scope the redirected code as shown above.

link|flag

Your Answer

Get an OpenID
or

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