I have a perl script which calls another script. I am calling it using backticks and passing argument to that script and it works fine.
`CQPerl call_script.pl $agr1 $agr2 $arg3`;
But please suggest if there is another better way to do so. How can I check if the script errored out because of the calling script or the script that was called. How do I do that check from the calling script itself?
If you wan't to do error checking, backticks may be a wrong approach. You probably want to use the system
function. See the documentation for all the details of error handling, examples included.
Perl has a number of possibilites to execute other scripts / commands:
qx{}
When you want to read all the output at once after the program has terminatedexec
When you wan't to continue your process as another program — never returns if succesfullsystem
When you are only interested in the success or failure of the commandopen
When you want to pipe information to or from the commanddo
and require
Execute another Perl script here. Similar to C's #include
open
so that you have access to STDIN
, STDOUT
and STDERR
of the program you executed. See the apropriate parts of perlipc for advanced information.And always use the multi-argument forms of these calls to avoid shell escaping (can be annoying and very insecure).
Check the value of the perl special variable $?
to determine if there was an error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With