SyntaxFix
Write A Post
Hire A Developer
Questions
With GNU Parallel you can do:
cat file | parallel 'foo {}; foo2 {}; foo3 {}'
This will run one job on each cpu core. To run 50 do:
cat file | parallel -j 50 'foo {}; foo2 {}; foo3 {}'
Watch the intro videos to learn more:
http://www.youtube.com/playlist?list=PL284C9FF2488BC6D1