darkrc/bin/concat

12 lines
143 B
Plaintext
Raw Normal View History

2022-12-07 13:17:10 +00:00
#!/usr/bin/env lua
local first = true
for line in io.lines() do
if first then
first = false
else
io.write(...)
end
io.write(line)
end