I'm running an application which is very chatty with this output going to stderr. The problem is that I want to lose the inconsequential but keep the important as real errors are getting lost amoungst the information lines. What I have now is
but that means I don't see the errors until it's all over which can be critical in long running processes.
Any ideas?
Ceci n'est pas une signature
Columb Healy
Code:
command > output.log 2> output.err
grep -v INFO output.err
Any ideas?
Ceci n'est pas une signature
Columb Healy