changed module store style, removed the pow
This commit is contained in:
@ -1,3 +0,0 @@
|
||||
echo "PRIVMSG $2 :$1: The available modules I have are:"
|
||||
output=$(find modules/ -maxdepth 1 -type f -not -name ".*" -printf "%f\n" | sed "s/.sh//")
|
||||
echo "PRIVMSG $2 :$1: "$output
|
3
modules/help/help.sh
Executable file
3
modules/help/help.sh
Executable file
@ -0,0 +1,3 @@
|
||||
echo "PRIVMSG $2 :$1: The available modules I have are:"
|
||||
output=$(ls modules/)
|
||||
echo "PRIVMSG $2 :$1: "$output
|
Binary file not shown.
@ -1,9 +0,0 @@
|
||||
#! /bin/sh
|
||||
# Ted Meyer
|
||||
# Incredibly stupid Math bot
|
||||
#
|
||||
sender=$1 # sender (the person I am talking to)
|
||||
channel=$2 # channel
|
||||
equ=$3 # math equ
|
||||
res=$(java -cp math/ nums $equ)
|
||||
echo "PRIVMSG $channel :$sender: $res"
|
Reference in New Issue
Block a user