Early in a script, I see this:
exec 3>&2
And later:
{ $app $conf_file &>$app_log_file & } 1>&3 2>&1
My understanding of this looks something like this:
- Create fd
3
- Redirect fd
3
output tostderr
- (Upon app execution) redirect
stdout
to fd3
, then redirectstderr
tostdout
Isn't that some kind of circular madness? 3
>stderr
>stdout
>3
>etc?
I'm especially concerned as to the intention/implications of this line because I'd like to start running some apps using this script with valgrind
. I'd like to see valgrind
's output interspersed with the app's log statements, so I'm hoping that the default output of stderr
is captured by the confusing line above. However, in some of the crashes that have led me to wanting to use valgrind
, I've seen glibc errors outputted straight to the terminal, rather than captured in the app's log file.
So, the question(s): What does that execution line do, exactly? Does it capture stderr
? If so, why do I see glibc output on the command line when an app crashes? If not, how should I change it to accomplish this goal?