Standard Error

Sometimes when we run a command, we get an error. By default, the shell prints the error onto the terminal. This is called standard error.

Example

$ wc -s
        wc: invalid option -- 's'
        Try 'wc --help' for more information.
        

Inputs, Outputs, and Errors
Redirecting Standard Error

References

Linux Pocket Guide

Tags