parallel
parallel copied to clipboard
This project now lives on in a rewrite at https://gitlab.redox-os.org/redox-os/parallel
Treat each line from stdin or from file list as one argument and use --colsep to split this in multiple arguments if requested. The current implementation is different from GNU...
In GNU parallel, the token `{2}` means "argument from second input list", whereas here it means "argument from second job". As far as I can see, there's no way to...
GNU parallel has a -0 option to use with the same option of find. Is this just missing or it's by design?
``` mqudsi@ZBook /m/c/U/M/Downloads> parallel --shell thread 'main' panicked at 'byte index 9 is out of bounds of `--shell`', /checkout/src/libcore/str/mod.rs:2171:8 stack backtrace: 0: std::sys::imp::backtrace::tracing::imp::unwind_backtrace at /checkout/src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:49 1: std::sys_common::backtrace::_print at /checkout/src/libstd/sys_common/backtrace.rs:71 2:...
```fish ~>> echo ./zoomed\ in.png ./zoomed in.png ~> echo ./zoomed\ in.png | parallel 'file -ib "{}"' parallel: reading inputs from standard input cannot open `"./zoomed in.png"' (No such file or...
I originally understood `--quote` to escape the `{...}` substitutions, not the command. Maybe it should escape both? ```fish ~> echo "hello 'world'" | parallel --quote --dry-run file -ib parallel: reading...
Input from an empty file, I think, should be handled as there is nothing to do, but instead it's trying to read inputs from `stdin`. ``` $ parallel 'echo {}'...
``` d33tah@d33tah-pc:/tmp$ cat /tmp/test.sh #!/bin/bash export LC_ALL=C for i in `seq 3`; do yes "banana" | dd count=$(( 10 ** $i )) > /tmp/yes2 time /usr/bin/parallel --pipe cat /dev/null time...
What happened here? ``` $ yes | dd count=1000 | RUST_BACKTRACE=1 /home/d33tah/.cargo/bin/parallel --pipe cat >/dev/null parallel: reading inputs from standard input 1000+0 przeczytanych recordów 1000+0 zapisanych recordów 512000 bajtów (512...
Since I'm packaging this for Fedora I would like to get opinion on naming.. Since `parallel` name is taken by GNU parallel, I am thinking how to name package and...