mew
This commit is contained in:
parent
fe086e3a0c
commit
1ff3cea4d6
29 changed files with 3206 additions and 79 deletions
9
computer/4/sendfile.lua
Normal file
9
computer/4/sendfile.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
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()
|
Loading…
Add table
Add a link
Reference in a new issue