Typing commands in shell will result in two output streams namely stdout and stderr. Stdout is the normal output stream while stderr is the output stream for error. For example, if you type the below command,
# ls /usr/ /userls: cannot access /user: No such file or directory/usr/:bin games java lib local share tmpetc include kerberos libexec sbin srcThe blue line is the stderr and the green lines are the stdout. By default, all output will be directed to the screen, but you can redirect both stdout and stderr to a file.
To redirect stdout to a file named /tmp/stdout and display the stderr to the screen:
# ls /usr /user > /tmp/stdoutls: cannot access /user: No such file or directoryTo redirect stderr to a file named /tmp/stderr and display stdout to the screen:
# ls /usr /user 2> /tmp/stderr/usr:bin games java lib local share tmpetc include kerberos libexec sbin srcTo redirect both to the file named /tmp/all:
# ls /usr /user > /tmp/all 2>&1or
#
ls /usr /user &> /tmp/allTo append the stderr and stdout to a file, simply:
# ls /usr /user >> /tmp/all 2>&1To both redirect and display the stderr and stdout, use
tee:
# ls /usr /user 2>&1 | tee /tmp/allls: cannot access /user: No such file or directory/usr:binetcgamesincludejavakerberosliblibexeclocalsbinsharesrctmpInstead of redirecting to a file or display, you can also redirect them to other command. For example, if you want to email your stderr and stdout to root user of the local machine(Make sure your mta service is on, if not the message will not be delivered):
# ls /usr /user 2>&1 | mail root@localhostIf you do not want to see any error display, just redirect the stderr to /dev/null
# ls /user 2> /dev/null