9 lines
117 B
Bash
9 lines
117 B
Bash
|
[ -f functions.sh ] && source functions.sh
|
||
|
|
||
|
user=$1
|
||
|
shift
|
||
|
shift
|
||
|
if [[ "$user" =~ $allowList ]]; then
|
||
|
close_bot
|
||
|
fi
|