Add create command

This commit is contained in:
Fierelier 2024-08-12 02:40:47 +02:00
parent 299309735a
commit 8144b3063f

6
cmd/create.lua Normal file
View File

@ -0,0 +1,6 @@
local function cmd(arg)
local fh = io.open(arg[2],"w")
fh:write("<entries>\n</entries>")
fh:close()
end
return cmd