zhanxw / parallel

Useful tools to parallel executing shell commands

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage
=====

Pipe your command to parallel. 
For example:

host> seq 5 |xargs -i echo sleep {} |shuf
sleep 3
sleep 4
sleep 1
sleep 5
sleep 2

Then you can use parallel to run those 5 commands by:

host> seq 5 |xargs -i echo sleep {} |shuf |parallel


About

Useful tools to parallel executing shell commands


Languages

Language:Python 100.0%