> What would be the easiest way to capture [stderr]?
One way:
$output = `$cmd 2>&1 1>$null`;
$null depends on the os; /dev/null on unix, /nul on an M$ OS.
- stdout/stderr Ronald J. Yacketta
- Re: stdout/stderr Me
- Re: stdout/stderr Evgeny Goldin (aka Genie)
