What is the difference between:
cmd > log 2>&1
and
cmd 2>&1 > log
where cmd is a command?
Which should I prefer and why?
What is the difference between:
cmd > log 2>&1
and
cmd 2>&1 > log
where cmd is a command?
Which should I prefer and why?
Redirects
STDOUT
to log and than replacesSTDERR
with the redirectedSTDOUT
.Replaces
STDERR
withSTDOUT
and then redirects the originalSTDOUT
to log.Order matters. The way to reason about redirections is to read them from left to right and realize that redirections make streams point at the same place. They don't make streams point at each other.
What does that mean? If you say
2>&1
then you are redirecting stderr to wherever stdout is currently redirected to. If stdout is going to the console then stderr is, too. If stdout is going to a file then stderr is as well. If you follow this up by then redirecting stdout, stderr still points to what stdout used to point to. It does not "follow" stdout to the new location.Right
This redirects stdout to
log
and then redirects stderr to wherever stdout is now being redirected, which islog
.End result: both stdout and stderr are redirected to
log
.Wrong
This redirects stderr to wherever stdout is currently being redirected, which is typically the console. Then stdout is redirected to
log
. Remember that stderr does not "follow" stdout, so it continues to redirect to the console.End result: stdout is redirected to the log file and stderr is (still) sent to the console. This is almost certainly not what you want.