1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-21 03:09:12 -04:00
OC-PsychOS2/exec/cat.lua

7 lines
110 B
Lua
Raw Normal View History

2019-01-08 02:09:04 -05:00
local tA = {...}
for _,fn in ipairs(tA) do
local f = io.open(fn,"rb")
io.write(f:read("*a"))
f:close()
end