in reply to How to get the exit status and the output of the command launched in perl

There are two ways to launch system commands in perl, one is by the system operator, and the other is by the backquotes operator.

And the open operator and the exec operator.   (And do if you consider a Perl program a system command.)

  • Comment on Re: How to get the exit status and the output of the command launched in perl