10 lines
202 B
Bash
Executable File
10 lines
202 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
|
|
fi
|