Downloadliste

Projektbeschreibung

GNU parallel is a shell tool for executing jobs in parallel locally or using remote computers. A job is typically 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. If you use xargs 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.

Systemanforderungen

Die Systemvoraussetzungen sind nicht definiert
Information regarding Project Releases and Project Resources. Note that the information here is a quote from Freecode.com page, and the downloads themselves may not be hosted on OSDN.

2011-11-23 07:25
20111122 ('Silvio')

Dies ist ein Bugfix-Release mit keine neuen Funktionen. Es ist wahrscheinlich eine gute Veröffentlichung für stabile langfristige Nutzung.
This is a bugfix release with no new features. It is probably a good release for stable long-term use.

2011-10-24 05:50
20111022

--tag prepends lines with the argument(s). If used with --(n)onall, the line will be prepended with the sshlogin instead. --shellquote does not run the command, but quotes it using \'s, which is useful for making quoted composed commands. --profile can now be repeated, merging multiple profiles. --bibtex now gives the BibTeX entry. A makefile for a simple .deb package: cd packager/debian; make. sql: --list-databases lists the databases.

2011-08-22 09:45
20110822 ('Utøya')

A - Timeout-Option wurde so implementiert, dass langsame Befehle können getötet werden. CPU-Erkennung ist für Mac OS X. wurde verbessert Es ist ein Beispiel für eine parallele Web-Crawler in der Manpage.
A --timeout option has been implemented so that slow commands can be killed. CPU detection has been improved for Mac OS X. There is an example of a parallel Web crawler in the man page.

2011-07-22 19:33
20110722

Die - hard Möglichkeit niceload wird ein Programm auszusetzen, wenn ein Grenzwert erreicht wird, während - soft wird das Programm verlangsamen, und - run-io verlangsamen wird ein Programm, wenn disk IO geht über eine bestimmte Grenze. - Run-Belastung wird sich verlangsamen, wenn ein Programm loadaverage geht über eine bestimmte Grenze. - Run-mem verlangsamen wird ein Programm, wenn der freie Speicher unter einen bestimmten Grenzwert. - Run-noswap verlangsamen wird ein Programm, wenn der Computer tauschen. - Start-io, - start-Last, - start-mem, und - start-noswap aufschieben Starten eines Programms, bis das System unter dem Grenzwert liegt. - Io, - Belastung, - mem und - noswap setzt beide - run-* und - start-*.
The --hard option of niceload will suspend a program if a limit is reached, while --soft will slow the program down, and --run-io will slow down a program if disk IO goes above a certain limit. --run-load will slow down a program if loadaverage goes above a certain limit. --run-mem will slow down a program if free memory goes below a certain limit. --run-noswap will slow down a program if the computer is swapping. --start-io, --start-load, --start-mem, and --start-noswap will defer starting a program until the system is below the limit. --io, --load, --mem, and --noswap sets both --run-* and --start-*.

2011-06-22 18:36
20110622

- Onall laufen alle Jobs auf allen Computern. Dies ist nützlich für Systemadministratoren mit mehreren Servern. - Nonall läuft wie - onall liest aber keine Argumente vom Standard-Input, so ist es möglich zu tun "parallel - nonall-S computer1, computer2 uptime". Context Ersatz funktioniert nun mit mehreren Eingangsquellen: "parallel-X echo {1} - {2}::: 1 2 3::: abc - noswap" startet nicht einen Job auf einem Server, ist Swapping.
--onall will run all the jobs on all the computers. This is useful for system administrators having multiple servers. --nonall runs like --onall but reads no arguments from standard input, so it is possible to do "parallel --nonall -S computer1,computer2 uptime". Context replacement now works with multiple input sources: "parallel -X echo {1}-{2} ::: 1 2 3 ::: a b c --noswap" does not start a job on a server that is swapping.

Project Resources