Just performs b64 encoding of stdin to stdout.

This commit is contained in:
Diego Nehab 2004-01-20 22:21:50 +00:00
parent a91a0f808d
commit 0b61b577f5

8
etc/b64.lua Normal file
View 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