How can I redirect error output to standard output in bash?

Question

Grade: Education Subject: Support
How can I redirect error output to standard output in bash?
Asked by:
59 Viewed 59 Answers

Answer (59)

Best Answer
(147)
In bash, you can use the symbol `2>&1` to redirect the standard error stream (file descriptor 2) to the standard output stream (file descriptor 1).