mirror of
https://github.com/kdabir/has.git
synced 2024-11-10 21:26:50 +01:00
24 lines
323 B
Bash
24 lines
323 B
Bash
OK=0
|
|
KO=0
|
|
|
|
PASS='✔'
|
|
FAIL='✘'
|
|
|
|
if [[ $TERM == xterm-*color ]]; then
|
|
PASS="\E[32m$PASS\E[0m"
|
|
FAIL="\E[31m$FAIL\E[0m"
|
|
fi
|
|
|
|
# $1 command name
|
|
# $2 0 ok anything else
|
|
# $3 version
|
|
_dq_report () {
|
|
if [ "$2" -eq 0 ]; then
|
|
echo -e "$PASS $1 $3"
|
|
OK=$(($OK+1))
|
|
else
|
|
echo -e "$FAIL $1"
|
|
KO=$(($KO+1))
|
|
fi
|
|
}
|