blob: 42e348904bcaf4d2f0819773ca57ad2881044224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
local i = 1
while true do
if arg[i] == '-E' then
elseif arg[i] == '-e' then
i = i + 1
local expr = assert(arg[i], "'-e' needs argument")
assert(load(expr, "=(command line)"))()
else
break
end
i = i + 1
end
for j = -1, #arg do
arg[j - i] = arg[j]
end
for j = #arg - i + 1, #arg do
arg[j] = nil
end
local root; do
local sep = package.config:sub(1,1)
if sep == '\\' then
sep = '/\\'
end
local pattern = "["..sep.."][^"..sep.."]+"
root = package.cpath:match("([^;]+)"..pattern..pattern..pattern.."$")
end
local fs = require "bee.filesystem"
fs.current_path(fs.path(root))
package.path = table.concat({
root .. "/script/?.lua",
root .. "/script/?/init.lua",
}, ";")
local main = arg[0] or 'main.lua'
assert(loadfile(main))(table.unpack(arg))
|