mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-23 06:27:55 +00:00
11 lines
249 B
Bash
11 lines
249 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo '### Test -q'
|
||
|
parallel -kq perl -e '$ARGV[0]=~/^\S+\s+\S+$/ and print $ARGV[0],"\n"' ::: "a b" c "d e f" g "h i"
|
||
|
|
||
|
echo '### Test -q {#}'
|
||
|
parallel -kq echo {#} ::: a b
|
||
|
parallel -kq echo {\#} ::: a b
|
||
|
parallel -kq echo {\\#} ::: a b
|
||
|
|