mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
937e204b1e
seq 1 1000000000 | parallel very_long_command Now parallel will not first queue commands but instead run them immediately.
4 lines
130 B
Bash
Executable file
4 lines
130 B
Bash
Executable file
#!/bin/bash
|
|
|
|
seq 1 100 | parallel -j0 -qv perl -e '$r=rand(shift);for($f=0;$f<$r;$f++){$a="a"x100};print shift,"\n"' 10000 | sort
|