12 lines
286 B
Bash
Executable File
12 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#echo "arguments are 1:$1 2:$2 3:$3 4:$4"
|
|
args="$1";
|
|
user="$2";
|
|
channel="$3";
|
|
nick="$(echo "$user"|cut -d "!" -f 1)"
|
|
args_lower="$(echo "$args"|tr [:upper:] [:lower:])"
|
|
case "$args_lower" in
|
|
("to shine") echo "yo, $nick, 🌟💎shine bright like a diamond!💎🌟";;
|
|
esac
|