Этот коммит содержится в:
Jesse van den Kieboom 2006-04-09 17:58:37 +00:00
родитель daf3f31af2
Коммит 41b66885bd
1 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -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