11 lines
249 B
Bash
Executable File
11 lines
249 B
Bash
Executable File
[ -f functions.sh ] && source functions.sh
|
|
|
|
user=$1
|
|
shift
|
|
shift
|
|
if [[ "$user" =~ $allowList ]]; then
|
|
./modules/do/do.sh "$1" "#$channel" "does a magical gesture and turns into ${1}!"
|
|
nick $1
|
|
sed -i bot.cfg -e "s/nick=.*/nick=\"$1\"/"
|
|
fi
|