> 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.



Reply via email to