random/log.sh

5 lines
91 B
Bash

# Fancy POSIX shell logging
log() {
echo -ne '\e[1;34m==>\e[0m '>&2
echo "$*" >&2
}