in reply to Re^2: Multiple commands with one system call
in thread Multiple commands with one system call
perl -e 'system("echo 1;echo 2;echo 3")'
I get the output:
1 2 3
Are you interupting execution, with perhaps ^c? In this case, yes, you are killing all jobs simultaneously. You could execute all three by splitting into multiple system calls:
system ("vp -e $ENV{VREL}"); system ("vscmd set-measure-mode fast; vscmd pg-address-check off");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Multiple commands with one system call
by renzosilv (Novice) on Sep 29, 2011 at 19:49 UTC | |
by kennethk (Abbot) on Sep 29, 2011 at 22:09 UTC | |
by shriken (Priest) on Sep 30, 2011 at 13:39 UTC |