1
0
mirror of https://github.com/a2-4am/4cade.git synced 2025-02-16 16:30:37 +00:00

6 lines
213 B
JavaScript
Raw Normal View History

2019-01-07 18:22:55 -08:00
a = new ActiveXObject("scripting.filesystemobject")
b = a.opentextfile(WScript.Arguments(1))
c = b.readall()
b.close()
a.createtextfile(WScript.Arguments(1)).write(String(c + Array(512).join(" ")).substr(0, 512))