mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-23 06:27:55 +00:00
8 lines
199 B
Bash
8 lines
199 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo '### Test {#}'
|
||
|
seq 1 10 | parallel -k echo {#}
|
||
|
|
||
|
echo '### Test --seqreplace and line too long'
|
||
|
seq 1 100 | stdout parallel -k --seqreplace I echo $(perl -e 'print "I"x130000') \|wc
|