blob: a791765e3301c890e64529ece1fb1846356c8b94 [file] [log] [blame] [raw]
os.execute = function(command)
if not command then
return type(shell) == "table"
end
checkArg(1, command, "string")
local head, tail = nil, ""
repeat
local oldHead = head
head = command:match("^%S+")
tail = unicode.sub(command, unicode.len(head) + 1) .. tail
if head == oldHead then -- say no to infinite recursion, live longer
command = nil
else
command = shell.getAlias(head)
end
until command == nil
local args = {}
for part in tail:gmatch("%S+") do
table.insert(args, part)
end
return shell.execute(head, _ENV, table.unpack(args))
end
function os.exit()
error("terminated", 0)
end
os.remove = fs.remove
os.rename = fs.rename
function os.sleep(timeout)
checkArg(1, timeout, "number", "nil")
local deadline = os.uptime() + (timeout or 0)
repeat
event.pull(deadline - os.uptime())
until os.uptime() >= deadline
end
function os.tmpname()
if fs.exists("tmp") then
for i = 1, 10 do
local name = "tmp/" .. math.random(1, 0x7FFFFFFF)
if not fs.exists(name) then
return name
end
end
end
end