One way (not necessarily the best, as what's best depends on definition):
#!/bin/bash for i in {1..10} do perl perl_code infile_$i outfile_$i & done
If you need more flexibility with what's being iterated over, you can of course also use Perl and start the subprocesses with system "perl ... &".
In reply to Re: Running parallel processes without communication
by Anonyrnous Monk
in thread Running parallel processes without communication
by vit
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |