Documented headers.lua Update copyright date everywhere Remove RCSID from files Move version back to 2.1 rather than 2.1.1 Fixed url package to support ipv6 hosts Changed "domain" to "family" in tcp and udp structures Implemented getfamily methods
13 lines
563 B
Lua
13 lines
563 B
Lua
-----------------------------------------------------------------------------
|
|
-- Little program to adjust end of line markers.
|
|
-- LuaSocket sample files
|
|
-- Author: Diego Nehab
|
|
-----------------------------------------------------------------------------
|
|
local mime = require("mime")
|
|
local ltn12 = require("ltn12")
|
|
local marker = '\n'
|
|
if arg and arg[1] == '-d' then marker = '\r\n' end
|
|
local filter = mime.normalize(marker)
|
|
local source = ltn12.source.chain(ltn12.source.file(io.stdin), filter)
|
|
local sink = ltn12.sink.file(io.stdout)
|
|
ltn12.pump.all(source, sink)
|