in reply to Re: Separating 'real' errors from ..err.. 'unreal'?
in thread Separating 'real' errors from ..err.. 'unreal'?

I was also trying to selectively pipe STDERR to /dev/null but Im getting a "The system cannot find the path specified." error from calling a command that includes "2>/dev/null" in it. I tried with both back-ticks and 'system'.

I'll give your idea a try. Thanks.

Addendum: worked great! Thanks **2
  • Comment on Re^2: Separating 'real' errors from ..err.. 'unreal'?

Replies are listed 'Best First'.
Re^3: Separating 'real' errors from ..err.. 'unreal'?
by syphilis (Archbishop) on Jul 14, 2007 at 01:04 UTC
    To redirect STDERR to the null device on windows you need to do it as 2>nul.

    Cheers,
    Rob