summaryrefslogtreecommitdiffstats
path: root/test/bashisms/808271.sh
blob: 0789d7eaa3a70907682a252914582b24f89ac3fc (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if type which; then
  echo "use which"
fi

if ! type which; then
  echo "well, idk"
fi