stormbot/modules/calculate/calculate.sh

12 lines
169 B
Bash
Raw Normal View History

2020-08-14 17:04:19 -04:00
[ -f functions.sh ] && source functions.sh
calculate() {
calc -- "$*" | tr -d '[:space:]'
}
name="$1"
shift
chan="$1"
shift
msg "$chan" "$name: $(calculate "$*")"