diff options
author | EuAndreh <eu@euandre.org> | 2022-10-18 23:46:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-18 23:46:45 -0300 |
commit | 6319cbd4dcec63e9a07ce88e169820fc653613e9 (patch) | |
tree | c86087d7fde33f93b2a1ccabbe673d971ff2a898 | |
parent | share/man/man1/ootb.1: Add WIP manpage (diff) | |
download | dotfiles-6319cbd4dcec63e9a07ce88e169820fc653613e9.tar.gz dotfiles-6319cbd4dcec63e9a07ce88e169820fc653613e9.tar.xz |
opt/tests/x-tests.sh: Add WIP markers for more tests to be added
-rwxr-xr-x | opt/tests/x-tests.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/opt/tests/x-tests.sh b/opt/tests/x-tests.sh index fe46354..4cb6faf 100755 --- a/opt/tests/x-tests.sh +++ b/opt/tests/x-tests.sh @@ -1,5 +1,12 @@ #!/bin/sh set -eu -x echo -x echo '&&' echo +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 |