Download List

프로젝트 설명

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')

이것은 새로운 기능 더와 함께 bugfix 릴리스입니다. 그것은 아마도 안정적인 장기 사용에 대 한 좋은 릴리스입니다.
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')

- 속도가 느린 명령을 살해 수 있도록 시간 제한 옵션이 구현되었습니다. CPU 감지 기능은 man 페이지에서 병렬 웹 크롤 러의 예제가 있습니다 Mac OS X 용 개선되었습니다.
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

- 한계에 도달하면 niceload의 하드 옵션 동안 프로그램을 일시 중지합니다 - 부드러운는 프로그램이 느려지며합니다 - 디스크 IO가 특정 한도 이상되면 실행 이오은 프로그램을 느리게합니다. - loadaverage이 일정 한도 이상되면 실행 부하가 프로그램을 느리게합니다. - 무료 메모리가 일정 한도 이하로되면 실행 멤은 프로그램을 느리게합니다. - 컴퓨터가 교환하는 경우 실행 noswap은 프로그램을 느리게합니다. - 시작 - 사실은, - 시작 - 부하 - 시작 멤하고, - 시스템이 아래의 한도까지 시작 noswap는 프로그램을 시작 연기합니다. - 사실은, - 부하 - 멤과 - noswap 모두 설정 - 실행 *와 - 시작 - *.
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 모든 컴퓨터에서 모든 작업을 실행됩니다. 이것은 여러 서버를 가지고 시스템 관리자를위한 유용합니다. - onall을하지만, 표준 입력으로부터 인수도를 읽고 없기 때문에 그것은 "병렬 - nonall - S COMPUTER1, 컴퓨터 2 가동"을 할 수 있습니다 - nonall과 같이 실행됩니다. 컨텍스트 교체는 이제 다중 입력 소스와 함께 작동 : "병렬 - X 에코 {1} - {2} : : 1 2 3 : : : ABC - noswap는"스와핑하는 서버에서 작업을 시작하지 않습니다.
--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