dotfiles/bin/is-executable

7 lines
81 B
Bash
Executable file

#!/usr/bin/env bash
if [ -x "$(command -v $1)" ]; then
exit 0
else
exit 1
fi