prpw/cmd/create.lua

7 lines
118 B
Lua
Raw Permalink Normal View History

2024-08-12 00:40:47 +00:00
local function cmd(arg)
local fh = io.open(arg[2],"w")
fh:write("<entries>\n</entries>")
fh:close()
end
return cmd