Redirecting sderr to a pipe
Programs are sending message on two different steam of data: standard output and
standard error. Standard output, notes as stdout
, is where the program
is writing the output data. Standard error or stderr
is to output the
error messages or diagnostics. With this two stream we can therefore separate
between ...