0
votes
0
comments
1,391
views

A little help redirecting stderr to stdout

0 votes, 0.00 avg. rating (0% score)
When writing shell scripts, there are times when I want to have the output captured and redirected into a file. Noticing that error messages from the script such as possible syntax errors are not written to the output file. This is because stderr and stdout are 2 separate file handles. Think of it as you […]