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?
Try using the conditional execution & or the && between each command either with a copy and paste into the cmd.exe window or in a batch file. Additionally, you can use the double pipe || symbols instead to only run the next command if the previous command failed.
It can be used to execute entered commands and perform advanced administrative functions. It can also be used to troubleshoot and solve certain kinds of Windows issues.
Pipe shell command The | command is called a pipe. It is used to pipe, or transfer, the standard output from the command on its left into the standard input of the command on its right. # First, echo "Hello World" will send Hello World to the standard output.
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.
cmd > log 2>&1
This redirects stdout to log
and then redirects stderr to wherever stdout is now being redirected, which is log
.
End result: both stdout and stderr are redirected to log
.
cmd 2>&1 > log
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With