Redirections

Bash Redirections

When Bash starts, normally, 3 file descriptors are opened, 0, 1 and 2 also known as standard input (stdin), standard output (stdout) and standard error (stderr).

numval
0stdin
1stdout
2stderr
2>/dev/null

Documentation