mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
11 lines
185 B
Bash
Executable file
11 lines
185 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PAR=parallel
|
|
|
|
echo Force outside the file handle limit
|
|
# 2009-02-17 Gave fork error
|
|
(echo echo Start;
|
|
seq 1 20000 | perl -pe 's/^/true /';
|
|
echo echo end) | $PAR -uj 0
|
|
|