trainworld_computercraft/computer/4/sendfile.lua
2025-05-26 02:36:15 +02:00

9 lines
175 B
Lua

file = fs.open(arg[1],"r")
line = file.readLine()
while line do
print(line)
rednet.send(1,line)
line = file.readLine()
end
rednet.send(1,nil)
file.close()