in reply to Getting PERL to snarf STDERR

You can do just that by using the standard open command.
open(STDERR, ">/dev/null"); $a = `some_obsure_and_eclectic_command`; close(STDERR);

Rich36
There's more than one way to screw it up...

Replies are listed 'Best First'.
Re: Re: Getting PERL to snarf STDERR
by toku (Novice) on Mar 01, 2002 at 20:06 UTC
    Many thanks.
    It worked perfectly.