<quote who="Eli Zaretskii"> >> Date: Sun, 27 Feb 2005 16:14:32 -0500 >> Cc: Alessandro Vesely <[EMAIL PROTECTED]>, [email protected] >> From: "Paul D. Smith" <[EMAIL PROTECTED]> >> >> Alessandro's point is that my suggested "improvement" is using Perl's >> open() with a pipe and redirection rather than using system, so no shell >> would be invoked. > > Sorry, I missed that. > > Does Perl have an explicit redirection operator or function? If it > does, we could redirect stderr to stdout _before_ the call to open(), > and that should do the trick, right? >
The samle I found in the online docs: open STDERR, ">&STDOUT" or die "Can't dup stdout"; Earnie -- http://www.mingw.org http://sourceforge.net/projects/mingw https://sourceforge.net/donate/index.php?user_id=15438 _______________________________________________ Make-w32 mailing list [email protected] http://lists.gnu.org/mailman/listinfo/make-w32
