wwwd8/testingtoolchain/out.sh

21 lines
328 B
Bash
Raw Permalink Normal View History

# output utilities
tp() {
tput "$@"
}
2016-02-10 04:23:55 +01:00
note() {
echo "$(tp bold)$(tp setaf 11)OCCHIO: $(tp sgr0)$(tp setaf 11)$*$(tp sgr0)"
}
error() {
echo "$(tp bold)$(tp setaf 1)$*$(tp sgr0)" >&2
}
progress() {
echo "[$(tp setaf 3)DOING$(tp sgr0)] $(tp sgr0)$*"
}
ok() {
echo "[$(tp bold)$(tp setaf 2)DONE$(tp sgr0)] $(tp sgr0)$*"
}