mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-03 11:48:37 +00:00
11 lines
119 B
Bash
Executable File
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
|
|
|