I'm trying to figure out how to do this in perl. Something like ...command1 & command2 & command3 & wait # wait for commands 1-3 to finish
What do I put in place of the perl wait command to get the same behavior as the unix wait when used in a ksh?system("command1 &"); system("command2 &"); system("command3 &"); wait; # doesn't behave like the unix wait :(
In reply to Perl wait vs Unix ksh wait by mifflin
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |