This commit is contained in:
2025-05-02 12:24:44 +02:00
commit 39e925cc1b
3238 changed files with 110472 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
local lfs = require"lfs"
local src = "../reference_scripts/"
local dst = "../scripts/"
for file in lfs.dir(src) do
if file == '.' or file == '..' then
else
local fp = io.open(dst..file, "r+")
if not fp then
print("File not found", dst..file)
os.execute("cp "..src..file.." "..dst..file)
else
fp:close()
end
end
end