Este commit está contenido en:
Jesse van den Kieboom 2006-04-09 17:58:37 +00:00
padre daf3f31af2
commit 41b66885bd
Se han modificado 1 ficheros con 7 adiciones y 7 borrados

Ver fichero

@ -44,24 +44,24 @@ def sh(cmd)
end
end # def sh
def run2(cmd)
def run(cmd)
if cmd
$world.sendln("emote LINUXes `#{cmd}`")
do_cmd(cmd) { |line| $world.sendln("emote | #{line}") }
else
error("use /run2 <command>")
error("use /run <command>")
end
end # def run2
end # def run
def crun2(argstr)
def crun(argstr)
chan, cmd = argstr.split(/\s+/, 2)
if chan and cmd
$world.sendln("#{cmd} emote LINUXes `#{argstr}`")
$world.sendln("#{chan} emote LINUXes `#{cmd}`")
do_cmd(cmd) { |line| $world.sendln("#{chan} emote | #{line}") }
else
error("use /crun2 <chanalias> <command>")
error("use /crun <chanalias> <command>")
end
end # def crun2
end # def crun
def pstrun(cmd)
if cmd