coreutils/tests/fixtures/split
Jeffrey Finkelstein ee36dea1a9 split: implement outputting kth chunk of file
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
2022-03-05 10:27:51 +01:00
..
asciilowercase.txt tests: correct a test case for split 2022-02-08 22:53:57 -05:00
fivelines.txt split: use ByteChunkWriter and LineChunkWriter 2022-02-08 22:57:57 -05:00
ninetyonebytes.txt split: correct filename creation algorithm 2022-01-10 20:43:22 -05:00
onehundredlines.txt split: implement outputting kth chunk of file 2022-03-05 10:27:51 +01:00
sixhundredfiftyonebytes.txt split: correct filename creation algorithm 2022-01-10 20:43:22 -05:00
threebytes.txt split: add support for -e argument 2022-02-17 19:03:51 -05:00
twohundredfortyonebytes.txt split: add support for -x option (hex suffixes) 2022-02-13 11:18:37 -05:00