prpw/cmd/save.lua

10 lines
204 B
Lua
Raw Normal View History

2024-08-10 00:35:03 +00:00
local function cmd(arg)
local toString = require('xmllpegparser').tostring
local s = toString(env.db,"\t")
local fh = io.open(env.file,"w")
fh:write(s)
fh:close()
env.changed = false
end
return cmd