unix_commands 2>&1
This is used to print errors to the terminal.
The following illustrates the process
&2
"buffer", from which the standard error stream 2
references.&1
"buffer", from which the standard output stream 1
references.So take the unix_commands
standard error stream 2
, and redirect >
the stream (of errors) to the standard output memory address &1
, so that they will be streamed to the terminal and printed.