mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
8865cbb10f
The code is quite messy, the implementation is fairly slow, but the structure seems sound and it passes the testsuite. basename {/} and {/.} implemented. Flushing of STDERR and STDOUT after each job completes.
8 lines
230 B
Bash
8 lines
230 B
Bash
#!/bin/bash
|
|
|
|
echo '### Test too slow spawning'
|
|
(sleep 0.3; seq 1 10 | parallel -j50 burnP6) &
|
|
seq 1 500 | nice nice stdout timeout -k 1 10 \
|
|
parallel -j500 "killall -9 burnP6 2>/dev/null ; echo {} >/dev/null"
|
|
killall -9 burnP6
|