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