General way to run an exe with errors written to a file
am 20.09.2007 02:04:27 von bencejohnIs there a purely Perl way to do the following (i.e., without relying
on a system specific call)?
use strict;
use warnings;
system("foo.exe bar > errs 2>&1");
Thanks