System Channels (File Descriptors)
# Redirect errors to normal output
command > out.log 2>&1
By default, errors (2) go through a different channel than data (1). With 2>&1 you "merge" channel
2 into channel 1 to save everything in a single file.
Data source. Keyboard, files, or pipes (|).
Normal program results (Standard Output).
Diagnostic messages and failures (Standard Error).
In Unix, "everything is a file", including these streams.