in reply to Re: Multiple commands with one system call
in thread Multiple commands with one system call
I would perhaps try this:
if (system(qw/vp -e/, $ENV{VREL}) != 0) { # last command failed system(qw/vscmd set-measure-mode fast/); system(qw/vscmd pg-address-check off/); }
I'm not sure which program gets the ctrl-C, but if it's not the Perl script, that should work.
|
|---|