mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
10 lines
115 B
Bash
Executable File
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
|