mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 14:28:21 +01:00
5 lines
151 B
Lua
5 lines
151 B
Lua
local CRLF = "\013\010"
|
|
local input = source.chain(source.file(io.stdin), normalize(CRLF))
|
|
local output = sink.file(io.stdout)
|
|
pump.all(input, output)
|