fix: cat doesn't print extra newline at end of each file

pull/290/head
James Dugan 2024-04-20 16:46:45 -06:00
parent 229fe4c6bb
commit c997a0b9ae
2 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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()