mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 06:18:21 +01:00
Just performs b64 encoding of stdin to stdout.
This commit is contained in:
parent
a91a0f808d
commit
0b61b577f5
8
etc/b64.lua
Normal file
8
etc/b64.lua
Normal file
@ -0,0 +1,8 @@
|
||||
local base64 = socket.mime.base64.encode()
|
||||
local split = socket.mime.split()
|
||||
local convert = socket.mime.chain(base64, split)
|
||||
while 1 do
|
||||
local chunk = io.read(4096)
|
||||
io.write(convert(chunk))
|
||||
if not chunk then break end
|
||||
end
|
Loading…
Reference in New Issue
Block a user