Created attachment 240121 [details] diff to split.c, split.1 Currently, split(1) will clobber any existing output files: $ split file; ls xaa xab xac xad $ split second-file; ls xaa xab xac xad xae xaf with files 'xaa' - 'xad' now having been overwritten. I often would like for it to pick up where it left off and continue creating files in the sequence. Right now, there is no good way for me to yield the desired output of "xaa xab xac xad xae xaf xag xah xai xaj". The attached diff adds a flag "-c" (mnemonic "create, don't overwrite" or "continue where you left off"): $ split file; ls xaa xab xac xad $ split -c second-file; ls xaa xab xac xad xae xaf xag xah xai xaj
See also: https://reviews.freebsd.org/D38553
(In reply to jschauma from comment #1) This patch was committed as ac17fc816e67a4e5e2e481b5001577a8d589f8b6.