Parallel Pipe
Tool for executing piped commands in a parallel environment.
Parallel pipe is a program designed to allow commands to be run in a grid/cluster environment. Such environments provide parallel execution of many tasks, so we can distribute our work across many nodes. Therefore our command has a chance to be run much faster than in a normal way. Not to mention that usage of this tool is very simple and intuitive.
For example let's say that we have to execute following command:
cat /etc/passwd | tr a A | sort
If we had a 2-node machine than we would use Parallel Pipe in a following way:
parpipe 'cat /etc/passwd | tr a A | sort'
Which would distribute this command on our nodes:



