diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb5beb..4401297 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # 🎀 Changelog ## Unreleased +### Fixed +- `cat` command no longer prints extra newline at end of each file + ### Added - `cat` command now reads files in chunks, allowing for reading large files diff --git a/nature/commands/cat.lua b/nature/commands/cat.lua index 34ebbb8..a2375e9 100644 --- a/nature/commands/cat.lua +++ b/nature/commands/cat.lua @@ -9,7 +9,7 @@ commander.register('cat', function(args, sinks) usage: cat [file]...]] end - local chunk_size = 2^13 -- 8K buffer size + local chunkSize = 2^13 -- 8K buffer size for _, fName in ipairs(args) do local f = io.open(fName) @@ -20,11 +20,10 @@ usage: cat [file]...]] end while true do - local block = f:read(chunk_size) + local block = f:read(chunkSize) if not block then break end sinks.out:write(block) end - sinks.out:writeln("") ::continue:: end io.flush()