complete-intro-to-linux-and-the-cli
complete-intro-to-linux-and-the-cli copied to clipboard
Fix #25:Wrong operator > for redirecting stderr and stdout. streams-and-pipes.md
A suggested fix for #25. cmd &> outfile instead of cmd > outfile for redirecting stderr and stdout to same file.
(Alternatively, there's cmd > outfile 2>&1 for wider compatibility.)