mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 06:18:21 +01:00
390846b640
Still crashes on invalid input. Dunno why.
10 lines
256 B
Lua
10 lines
256 B
Lua
marker = {['-u'] = '\10', ['-d'] = '\13\10'}
|
|
arg = arg or {'-u'}
|
|
marker = marker[arg[1]] or marker['-u']
|
|
local convert = socket.mime.normalize(marker)
|
|
while 1 do
|
|
local chunk = io.read(1)
|
|
io.write(convert(chunk))
|
|
if not chunk then break end
|
|
end
|