stormbot/functions.sh

10 lines
86 B
Bash
Raw Normal View History

#!/bin/bash
msg()
{
local msg="PRIVMSG $1"
shift
echo "$msg $@" | tee -a "$log"
}