mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-10 23:53:34 -05:00
7 lines
110 B
Lua
7 lines
110 B
Lua
local tA = {...}
|
|
for _,fn in ipairs(tA) do
|
|
local f = io.open(fn,"rb")
|
|
io.write(f:read("*a"))
|
|
f:close()
|
|
end
|