stormbot/functions.sh

21 lines
228 B
Bash
Raw Normal View History

#!/bin/bash
if [ -z "$input" ]; then
input=".bot.cfg"
fi
msg()
{
local msg="PRIVMSG $1"
shift
echo "$msg $@" | tee -a "$input"
}
2016-09-04 12:43:22 -04:00
act()
{
local msg="PRIVMSG $1 :\x01ACTION"
shift
echo -e "$msg $@\x01" | tee -a "$input"
}