mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-16 02:01:05 +00:00
Implement `-n l/k/N` option, where the `k`th chunk of the input file
is written to stdout. For example,
$ seq -w 0 99 > f; split -n l/3/10 f
20
21
22
23
24
25
26
27
28
29
|
||
|---|---|---|
| .. | ||
| asciilowercase.txt | ||
| fivelines.txt | ||
| ninetyonebytes.txt | ||
| onehundredlines.txt | ||
| sixhundredfiftyonebytes.txt | ||
| threebytes.txt | ||
| twohundredfortyonebytes.txt | ||