mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-10 15:48:36 -05:00
11 lines
160 B
Lua
11 lines
160 B
Lua
local tA = {...}
|
|
tA[1] = tA[1] or "."
|
|
for _,d in ipairs(tA) do
|
|
if #tA > 1 then
|
|
print(d..":")
|
|
end
|
|
for _,f in ipairs(fs.list(d)) do
|
|
print(" "..f)
|
|
end
|
|
end
|