mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
5 lines
133 B
Bash
5 lines
133 B
Bash
#!/bin/bash
|
|
|
|
# Test if we can deal with output > 4 GB
|
|
echo | parallel 'dd if=/dev/zero count=43 bs=100000k; echo 1; echo 2' | md5sum
|