Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to execute more than one perl script in parallel on a linux machine?

Tags:

linux

perl

I want run all script from the directory . Like ,

The directory contains 40 script,i would like to run first 5 script parallel.after completing these scripts the next 5 script will be execute as well as the remaining.

Please give any solutions by using linux and perl commands

like image 909
Parthipan Avatar asked Dec 08 '22 23:12

Parthipan


1 Answers

Everyone loves to reinvent parallel execution tools.

  • parallel
  • pexec
  • runN
  • xapply
like image 93
daxim Avatar answered May 09 '23 14:05

daxim