in reply to Re: Disable output from system
in thread Disable output from system

This will work for many commands but some will fail if they don't have STDOUT and/or STDERR open.

Replies are listed 'Best First'.
Re^3: Disable output from system
by educated_foo (Vicar) on Mar 28, 2009 at 22:30 UTC
    True. For those (poorly-written) commands, s!close\s+(\w+)!open $1, '>/dev/null'!