mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
bff9531219
-X. --return of files containing space. Passes testsuite.
7 lines
273 B
Bash
Executable file
7 lines
273 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Test if we can deal with output > 4 GB
|
|
echo | niceload -l 1.5 parallel -q perl -e '$a="x"x1000000;for(0..4300){print $a}' | md5sum
|
|
# dd does not work with niceload (no idea why)
|
|
#echo | parallel 'dd if=/dev/zero count=43 bs=100000k; echo 1; echo 2' | md5sum
|