in reply to Re: Re: Creation of simultaneous system commands
in thread Creation of simultaneous system commands

And if your jobs are external programs to be run:
fork // die || exec $_ for @jobs;

If they are subs to be called:

fork // die || exit &$_ for @jobs;

Abigail