tsv-split: This PR changes the default output file suffix from ".tsv" to the extension of the first input file. The extension is empty when reading from standard input. The suffix can be customized using --suffix. For example, the command:
tsv-split --num-files 100 data.txt
will produce output files of form: part_00.txt, part_01.txt, ..., part_99.txt. Previously these output files would have ".txt" extensions.
tsv-split
: This PR changes the default output file suffix from ".tsv" to the extension of the first input file. The extension is empty when reading from standard input. The suffix can be customized using--suffix
. For example, the command:will produce output files of form:
part_00.txt
,part_01.txt
, ...,part_99.txt
. Previously these output files would have ".txt" extensions.