diff options
Diffstat (limited to 'test/bashisms/808271.sh')
-rw-r--r-- | test/bashisms/808271.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/bashisms/808271.sh b/test/bashisms/808271.sh new file mode 100644 index 0000000..0789d7e --- /dev/null +++ b/test/bashisms/808271.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +if type which; then + echo "use which" +fi + +if ! type which; then + echo "well, idk" +fi |