Download List

Descripción del Proyecto

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.

System Requirements

System requirement is not defined
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')

Esta es una versión bugfix con sin novedades. Es probablemente un buen lanzamiento para uso a largo plazo estable.
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 - opción de tiempo de espera se ha implementado para que los comandos lenta puede ser asesinado. Detección de CPU se ha mejorado para Mac OS X. No es un ejemplo de un rastreador web paralela en la página del manual.
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

La opción - difícil de niceload a suspender un programa si se alcanza un límite, mientras - suave lento el programa de abajo, y - ejecutar-io se ralentizará un programa si el disco IO pasa por encima de cierto límite. - Ejecución de carga se reducirá un programa si loadaverage pasa por encima de cierto límite. - Ejecución de miembros se reducirá un programa si la memoria libre cae por debajo de cierto límite. - Ejecución noswap se ralentizará un programa si el equipo está cambiando. - Start-io, - la puesta en carga, - la puesta en miembros, y - la puesta en noswap va a aplazar el inicio de un programa hasta que el sistema está por debajo del límite. - Io, - la carga, - miembros, y - noswap establece tanto - y de ejecución * - 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 se ejecutarán todos los trabajos en todos los equipos. Esto es útil para los administradores de sistemas con múltiples servidores. - Funciona como un nonall - onall pero no lee los argumentos de la entrada estándar, así que es posible hacer "en paralelo - nonall-S COMPUTER1, COMPUTER2 tiempo de actividad". Reemplazo de contexto ahora trabaja con múltiples fuentes de entrada: "paralelo-X echo {1} - {2}::: 1 2 3::: abc - noswap" no se inicia un trabajo en un servidor que está cambiando.
--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