mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 22:38:21 +01:00
6 lines
211 B
Lua
6 lines
211 B
Lua
local qp = filter.chain(normalize(CRLF), encode("quoted-printable"),
|
|
wrap("quoted-printable"))
|
|
local input = source.chain(source.file(io.stdin), qp)
|
|
local output = sink.file(io.stdout)
|
|
pump.all(input, output)
|