within a bash script, the following line
somecommand 2>/dev/null
directs error output (FD2, stderror) from somecommand to /dev/null, but also apparently directs stderror from every subsequent line of the script to same. How do I "turn off" this redirection in order to get error messages resulting from subsequent commands within the script?
0 Answers