1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/sh set -eu perl ~/.usr/bin/x2 echo perl ~/.usr/bin/x2 echo '&&' echo # Quoting stuff works perl bin/x2 echo "'abc\'" # "OR" has a stronger precedence perl bin/x2 echo a '||' this-executable-does-not-exist # FIXME