mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +00:00
Add support for `split -n l/NUM`. Previously, `split` only supported `-n NUM`, which splits a file into `NUM` chunks by byte. The `-n l/NUM` strategy splits a file into `NUM` chunks without splitting lines across chunks. |
||
|---|---|---|
| .. | ||
| src | ||
| BENCHMARKING.md | ||
| Cargo.toml | ||
| README.md | ||
Rudimentary "split" Implementation
Missing Features
Flags
--verbose- created file printing is implemented, don't know if there is anything else
Possible Optimizations
- Use slice (
[u8]) directly as thecontrol.current_line.