mirror of
https://github.com/kdabir/has.git
synced 2024-11-11 14:40:48 +01:00
11984e8d81
Closes #6
34 lines
587 B
Bash
Executable file
34 lines
587 B
Bash
Executable file
OK=0
|
|
KO=0
|
|
|
|
PASS='✔'
|
|
FAIL='✘'
|
|
|
|
if [[ $TERM == xterm-*color ]]; then
|
|
PASS="\E[32m$PASS\E[0m"
|
|
FAIL="\E[31m$FAIL\E[0m"
|
|
fi
|
|
|
|
_dq_report () {
|
|
if [ "$2" -eq 0 ]; then
|
|
echo -e "$PASS $1"
|
|
OK=$(($OK+1))
|
|
else
|
|
echo -e "$FAIL $1"
|
|
KO=$(($KO+1))
|
|
fi
|
|
}
|
|
|
|
## surprisingly no option for version that i could find of
|
|
clj --help > /dev/null 2>&1
|
|
_dq_report 'clojure' $?
|
|
emacs --version > /dev/null 2>&1
|
|
_dq_report 'emacs' $?
|
|
java -version > /dev/null 2>&1
|
|
_dq_report 'java' $?
|
|
|
|
lein -v > /dev/null 2>&1
|
|
_dq_report 'leiningen' $?
|
|
echo; echo Your dq is $OK / $(($OK+$KO))
|
|
|
|
exit $KO
|