mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
33 lines
539 B
Bash
33 lines
539 B
Bash
#!/bin/bash
|
|
|
|
echo '### Test of #! --shebang'
|
|
cat >/tmp/shebang <<EOF
|
|
#!/usr/local/bin/parallel --shebang -rk echo
|
|
A
|
|
B
|
|
C
|
|
EOF
|
|
chmod 755 /tmp/shebang
|
|
/tmp/shebang
|
|
|
|
echo '### Test of #! --hashbang'
|
|
cat >/tmp/shebang <<EOF
|
|
#!/usr/local/bin/parallel --hashbang -rk echo
|
|
A
|
|
B
|
|
C
|
|
EOF
|
|
chmod 755 /tmp/shebang
|
|
/tmp/shebang
|
|
|
|
echo '### Test of #! with 2 files as input (2 columns)'
|
|
cat >'/tmp/she <bang>"' <<EOF
|
|
#!/usr/local/bin/parallel --shebang -rk --xapply -a /tmp/123 echo
|
|
A
|
|
B
|
|
C
|
|
EOF
|
|
chmod 755 '/tmp/she <bang>"'
|
|
seq 1 3 >/tmp/123
|
|
'/tmp/she <bang>"'
|