small fixes
This commit is contained in:
parent
5ed6f192b1
commit
a8f5717b56
@ -3,7 +3,6 @@
|
|||||||
-- Written by Cosmin Apreutesei. Public Domain.
|
-- Written by Cosmin Apreutesei. Public Domain.
|
||||||
|
|
||||||
-- Reworked from the (in)famous coro lib
|
-- Reworked from the (in)famous coro lib
|
||||||
---@diagnostic disable: duplicate-set-field
|
|
||||||
|
|
||||||
local old_create = coroutine.create;
|
local old_create = coroutine.create;
|
||||||
local old_close = coroutine.close;
|
local old_close = coroutine.close;
|
||||||
|
@ -50,21 +50,21 @@ return function (glob)
|
|||||||
--- @param self string
|
--- @param self string
|
||||||
function glob.string:quotesh()
|
function glob.string:quotesh()
|
||||||
return "'" .. self
|
return "'" .. self
|
||||||
:gsub("*", "\\*")
|
:gsub("%*", "\\*")
|
||||||
:gsub("?", "\\?")
|
:gsub("%?", "\\?")
|
||||||
:gsub("~", "\\~")
|
:gsub("%~", "\\~")
|
||||||
:gsub("$", "\\$")
|
:gsub("%$", "\\$")
|
||||||
:gsub("&", "\\&")
|
:gsub("%&", "\\&")
|
||||||
:gsub("|", "\\|")
|
:gsub("%|", "\\|")
|
||||||
:gsub(";", "\\;")
|
:gsub("%;", "\\;")
|
||||||
:gsub("<", "\\<")
|
:gsub("%<", "\\<")
|
||||||
:gsub(">", "\\>")
|
:gsub("%>", "\\>")
|
||||||
:gsub("(", "\\)")
|
:gsub("%(", "\\)")
|
||||||
:gsub("[", "\\]")
|
:gsub("%[", "\\]")
|
||||||
:gsub("{", "\\}")
|
:gsub("%{", "\\}")
|
||||||
:gsub("%\\", "\\\\")
|
:gsub("%%\\", "\\\\")
|
||||||
:gsub("\'", "\\\'")
|
:gsub("%\'", "\\\'")
|
||||||
:gsub("\"", "\\\"")
|
:gsub("%\"", "\\\"")
|
||||||
:gsub("`", "\\`") .. "'";
|
:gsub("%`", "\\`") .. "'";
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -16,8 +16,12 @@ function exports.pwd()
|
|||||||
return os.getenv "PWD" or "./";
|
return os.getenv "PWD" or "./";
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- @param path string
|
||||||
function exports.ls(path)
|
function exports.ls(path)
|
||||||
return os.execute("ls ")
|
local f = assert(io.popen("ls " .. path:quotesh()));
|
||||||
|
local res = f:read "*a";
|
||||||
|
f:close();
|
||||||
|
return res;
|
||||||
end
|
end
|
||||||
|
|
||||||
return exports;
|
return exports;
|
||||||
|
@ -213,7 +213,7 @@ function exports.main(...)
|
|||||||
elseif mod and type(mod.main) == "function" then
|
elseif mod and type(mod.main) == "function" then
|
||||||
return mod.main(...);
|
return mod.main(...);
|
||||||
end
|
end
|
||||||
end, ...);
|
end, unpack(args));
|
||||||
else
|
else
|
||||||
return exports.repl();
|
return exports.repl();
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user