2
1
mirror of https://github.com/kdabir/has.git synced 2024-09-18 17:01:29 +02:00
has/bin/clojure_dev/dq.sh
2014-05-12 15:44:56 +05:30

35 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