Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-02-21 | Cap sillyness. Closes: #570815 | Joey Hess | 2 | -3/+9 | |
2010-02-09 | releasing version 0.380.38 | Joey Hess | 2 | -4/+3 | |
2010-02-09 | changelog | Joey Hess | 1 | -0/+2 | |
2010-02-09 | parallel: Define WEXITED to allow building on FreeBSD kernel. (This is ↵ | Joey Hess | 2 | -0/+6 | |
somewhat experimental.) | |||||
2010-02-09 | freebsd patch from Enrico Tassi | Joey Hess | 3 | -18/+48 | |
* ifdata: - Use unsigned long for ioctl command. On both Linux and FreeBSD ioctl expects an unsigned long command. FreeBSD kernel was complaining about the (by chance) signedness of the ioctl command (then probably ignored, since it worked both on Linux and FreeBSD). WARNING pid 799 (ifdata): ioctl sign-extension ioctl ffffffffc0206933 - put #if defined(__linux__) around ioctls that are not supported by FreeBSD - Mention in the manpage that some options are Linux specific. | |||||
2009-10-31 | wording | Joey Hess | 1 | -2/+2 | |
2009-10-31 | parallel: Allow running independent commands, like `parallel -j3 -- ls df ↵ | Joey Hess | 3 | -17/+50 | |
"echo hi"` | |||||
2009-10-05 | Description improvements. Closes: #549450 (Thanks, Justin B Rye) | Joey Hess | 3 | -10/+17 | |
2009-07-25 | releasing version 0.370.37 | Joey Hess | 2 | -3/+3 | |
2009-07-25 | parallel.1: Typo fixes. Closes: #538147 | Joey Hess | 2 | -1/+2 | |
2009-07-25 | update | Joey Hess | 2 | -3/+6 | |
2009-07-25 | support -n option | Pierre Habouzit | 2 | -15/+39 | |
This makes parallel stuff more than one argument to the subcommands. It's very useful when subcommands are slow to start and are able to process multiple files at once, that tasks are small but plenty. For example: $ ./parallel -n 3 echo -- a b c d e f g h a b c d e f g h Signed-off-by: Pierre Habouzit <madcoder@debian.org> | |||||
2009-07-15 | parallel: Clarify man page regarding CPUs. Closes: #536597 | Joey Hess | 2 | -1/+7 | |
2009-07-10 | releasing version 0.360.36 | Joey Hess | 1 | -2/+2 | |
2009-07-10 | update | Joey Hess | 1 | -3/+6 | |
2009-07-10 | use sysconf to determine number of processors | Joey Hess | 1 | -3/+8 | |
2009-07-10 | update | Joey Hess | 1 | -3/+13 | |
2009-07-10 | Merge commit 'remotes/tollef/master' | Joey Hess | 1 | -3/+18 | |
2009-07-10 | Fix indentation | Tollef Fog Heen | 1 | -2/+2 | |
2009-07-10 | parallel: Argument validation | Tollef Fog Heen | 1 | -2/+16 | |
Make sure the arguments passed to -j and -l are numbers and error out if they are not. | |||||
2009-07-10 | parallel: Assume -j 1 if no -j or -l is given | Tollef Fog Heen | 1 | -1/+2 | |
2009-07-02 | mispipe: Fix closing of extra pipe FD before starting command so it is not ↵ | Joey Hess | 2 | -7/+10 | |
inherited by daemons. Closes: #533448 (Thanks, Jeremie Koenig) | |||||
2009-07-02 | avoid uninitalized value warning | Joey Hess | 1 | -1/+1 | |
2009-07-02 | misc formatting | Joey Hess | 1 | -10/+6 | |
2009-07-02 | parallel: New program, contributed by Tollef Fog Heen, that can run multiple ↵ | Joey Hess | 6 | -1/+135 | |
jobs in parallel, optionally checking load average. | |||||
2009-06-30 | parallel: Implement -l (maxload) and -i (replace {}) | Tollef Fog Heen | 1 | -11/+39 | |
Add support for only starting jobs when the load average is low enough, this is done with -l and acts similarly to how make does it. In order to construct more complex commands, add -i which will make parallel replace {} with the argument at an arbitrary place in the command line. | |||||
2009-06-30 | parallel: Fix typo in usage string | Tollef Fog Heen | 1 | -1/+1 | |
2009-06-30 | Return non-zero if something goes wrong | Tollef Fog Heen | 1 | -7/+14 | |
The return code of parallel is the OR-ed exit status of all the children, with 1 being OR-ed in if any child is killed. | |||||
2009-06-30 | Compile parallel by default | Tollef Fog Heen | 1 | -1/+1 | |
2009-06-30 | Add initial writeup of parallel tool | Tollef Fog Heen | 1 | -0/+144 | |
2009-05-05 | releasing version 0.350.35 | Joey Hess | 2 | -3/+3 | |
2009-05-05 | remove unnecessary quotes | Joey Hess | 1 | -1/+1 | |
2009-05-05 | isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, ↵ | Joey Hess | 3 | -1/+14 | |
Jakub Wilk and liw) | |||||
2009-05-02 | ifdata: Don't assume that all interface names are 6 characters or less, for ↵ | Joey Hess | 2 | -1/+9 | |
instance "wmaster0" is longer. Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) | |||||
2008-12-11 | releasing version 0.340.34 | Joey Hess | 1 | -2/+2 | |
2008-12-11 | vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 | Joey Hess | 2 | -2/+9 | |
2008-10-31 | releasing version 0.330.33 | Joey Hess | 1 | -2/+2 | |
2008-10-31 | Fix zrun breakage introduced last version. Closes: #504129 | Joey Hess | 2 | -1/+2 | |
2008-10-27 | changelog | Joey Hess | 1 | -0/+6 | |
2008-10-27 | Support installing moreutils into prefixes other than /usr | Evan Broder | 1 | -5/+6 | |
2008-10-26 | Fix pod error in vidir(1).0.32 | Joey Hess | 2 | -2/+5 | |
2008-09-27 | zrun: Can be linked to zsomeprog to run the equivilant of zrun someprog. | Joey Hess | 2 | -5/+29 | |
* zrun: Can be linked to zsomeprog to run the equivilant of zrun someprog. Closes: #411623 (Stefan Fritsch) * zrun: Add support for lzma and lzo. (Stefan Fritsch) | |||||
2008-07-09 | typo | Joey Hess | 1 | -1/+1 | |
2008-06-28 | releasing version 0.310.31 | Joey Hess | 2 | -3/+3 | |
2008-05-28 | ts: Support displaying fractional seconds via a "%.S" conversion ↵ | Joey Hess | 2 | -3/+24 | |
specification. Closes: #482789 | |||||
2008-05-28 | pee.1: Document difference with tee in stdout. | Joey Hess | 2 | -1/+10 | |
2008-05-14 | releasing version 0.300.30 | Joey Hess | 1 | -2/+2 | |
2008-05-12 | ifne: If no command is specified, print usage information. | Joey Hess | 3 | -2/+6 | |
2008-05-12 | Added -n option to ifne. | Vicho | 2 | -20/+65 | |
With -n, ifne runs the command if the standard input is empty and does nothing otherwise. | |||||
2008-05-10 | update | Joey Hess | 1 | -0/+1 | |