mirror of
https://github.com/uutils/coreutils
synced 2024-12-17 16:43:16 +00:00
7dc96697c9
Implement distributing lines of a file in a round-robin manner to a specified number of chunks. For example, $ (seq 1 10 | split -n r/3) && head -v xa[abc] ==> xaa <== 1 4 7 10 ==> xab <== 2 5 8 ==> xac <== 3 6 9 |
||
---|---|---|
.. | ||
src | ||
BENCHMARKING.md | ||
Cargo.toml | ||
LICENSE | ||
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
.