Output Redirection

The purpose of this document is to explain how to use standard input and output redirection. More info here.

    • 2>&1 - Redirect standard error to standard output

    • 2>&1 > /dev/null & - run in background and don't bother me!

    • 2> /dev/null - ignore error

[Edit]