Files
dotfiles/local/bin/x-have

10 lines
115 B
Bash
Executable File

#!/usr/bin/env bash
# Returns which status
which "$1" >&/dev/null
if [ $? -eq 0 ]; then
exit 0
else
exit 1
fi