prpw/cmd/open.lua

12 lines
227 B
Lua
Raw Normal View History

2024-08-10 00:35:03 +00:00
local function cmd(args)
env.db = {}
collectgarbage("collect")
local parseFile = require('xmllpegparser').parseFile
env.file = args[2]
local doc,err = parseFile(env.file)
env.db = doc
env.changed = false
end
return cmd