This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/shell.lua
2015-12-13 09:25:49 -05:00

27 lines
427 B
Lua

local triggers = {
'^/run[@'..bot.username..']*'
}
local action = function(msg)
if msg.from.id ~= config.admin then
return
end
local input = msg.text:input()
if not input then
sendReply(msg, 'Please specify a command to run.')
return
end
local output = io.popen(input):read('*all')
if output:len() == 0 then output = 'Done!' end
sendReply(msg, output)
end
return {
action = action,
triggers = triggers
}