Files
dotfiles/local/bin/x-have

11 lines
119 B
Bash
Executable File

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