1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-21 03:09:12 -04:00
OC-PsychOS2/exec/nc.lua
2019-01-09 16:23:30 +11:00

17 lines
330 B
Lua

local minitel = require "minitel"
local tA = {...}
host, port = tA[1], tA[2]
local socket = minitel.open(host,port)
if not socket then return false end
local b = ""
repeat
io.write(socket:read("*a"))
coroutine.yield()
b = io.read(nil,true) or ""
if b:len() > 0 then
socket:write(b.."\n")
end
until socket.state ~= "open"