in reply to Re: Perl launching process
in thread Perl launching process

Regarding #3, backtick does not capture stderr by default? Unless shell redirection is used?

Replies are listed 'Best First'.
Re^3: Perl launching process
by hippo (Archbishop) on Dec 14, 2018 at 08:58 UTC

    It does not, as a trivial test will confirm.

    $ perl -e 'print "###", `chown foo /`, "###\n"'