Backup GNU Parallel
Go to file
2011-07-12 21:59:48 +02:00
doc parallel.pod: explain no replacement string => {} is appended. 2011-07-10 16:33:33 +02:00
packager 0install: added version 20110622 2011-06-23 22:49:12 +10:00
src Fixed bug #33752: experimental --load option gives warning messages. 2011-07-12 21:59:48 +02:00
testsuite parallel: Fixes #33621: --bg -p should give an error message. 2011-06-23 00:12:16 +02:00
.gitignore parallel: passes unittest 2010-12-04 15:47:01 +01:00
aclocal.m4 Released as 20110522 ('Pakistan'). 2011-05-22 01:12:43 +02:00
cc-by-sa.txt Documentation license update 2010-04-20 08:27:53 +02:00
config.h.in Implemented automake 2010-04-18 16:18:31 +02:00
configure parallel: Fixed -u with test. Passes testsuite. 2011-06-22 01:14:59 +02:00
configure.ac parallel: Fixed -u with test. Passes testsuite. 2011-06-22 01:14:59 +02:00
COPYING parallel: Argument handling re-written to OO. 2010-11-22 10:35:53 +01:00
fdl.txt Documentation license update 2010-04-20 08:27:53 +02:00
install-sh Implemented automake 2010-04-18 16:18:31 +02:00
Makefile.am parallel: Argument handling re-written to OO. 2010-11-22 10:35:53 +01:00
Makefile.in parallel: Argument handling re-written to OO. 2010-11-22 10:35:53 +01:00
missing Implemented automake 2010-04-18 16:18:31 +02:00
NEWS Released as 20110622. 2011-06-22 01:47:47 +02:00
README parallel: /tmp/*.arg was not removed 2011-05-21 01:07:45 +02:00

			 GNU Parallel README

Please send problems and feedback to bug-parallel@gnu.org.

= Presentation of GNU Parallel =

GNU parallel is a shell tool for executing jobs in parallel using one
or more computers. A job is can be a single command or a small script
that has to be run for each of the lines in the input. The typical
input is a list of files, a list of hosts, a list of users, a list of
URLs, or a list of tables. A job can also be a command that reads from
a pipe. GNU parallel can then split the input and pipe it into
commands in parallel.

If you use xargs and tee today you will find GNU parallel very easy to
use as GNU parallel is written to have the same options as xargs. If
you write loops in shell, you will find GNU parallel may be able to
replace most of the loops and make them run faster by running several
jobs in parallel.

GNU parallel makes sure output from the commands is the same output as
you would get had you run the commands sequentially. This makes it
possible to use output from GNU parallel as input for other programs.


= Installation =

Installation of GNU Parallel is a simple as:

  ./configure && make && make install

If you are not root you can install in ~/bin and ~/share:

  ./configure --prefix=$HOME && make && make install

After this you should be able to do:

  parallel traceroute ::: foss.org.my gnu.org freenetproject.org

This will run traceroute to 3 different hosts in parallel and print
the output when the traceroutes are done.

Watch the intro video for a quick introduction:
http://www.youtube.com/watch?v=OpaiGYxkSuQ or at
http://tinyogg.com/watch/TORaR/ and http://tinyogg.com/watch/hfxKj/


= New versions =

New versions will be released at: ftp://ftp.gnu.org/gnu/parallel/