The errors are coming up on my display and screwing up the console windows that I am trying to work from.
They take up about half the screen. Anyone know how I can stop them?
Also, one of the errors is a sendmail noqueu syserr anyone seen it?
The errors are coming up on my display and screwing up the console windows that I am trying to work from.
They take up about half the screen. Anyone know how I can stop them?
Also, one of the errors is a sendmail noqueu syserr anyone seen it?
Calamine,
See if this works for you.
If you don't care about the errors:
your_shell 3>/dev/null
or if you want to save the errors in an "error_file":
your_shell 3>error_file
I think this was a typo followed by a copy and paste of the typo, it should be:
your_shell 2>/dev/null
or if you want to save the errors in an "error_file":
your_shell 2>error_file
Thanks Reborg -- I just noticed it now.
Sorry. 
Not a problem.