Home
last modified time | relevance | path

Searched hist:ac17fc816e67a4e5e2e481b5001577a8d589f8b6 (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.bin/split/
H A Dsplit.1diff ac17fc816e67a4e5e2e481b5001577a8d589f8b6 Tue May 30 15:13:16 CEST 2023 Jan Schaumann <jschauma@netmeister.org> split(1): add '-c' to continue creating files

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

This patch 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

Reviewed by: christos
Approved by: kevans
Different Revision: https://reviews.freebsd.org/D38553
H A Dsplit.cdiff ac17fc816e67a4e5e2e481b5001577a8d589f8b6 Tue May 30 15:13:16 CEST 2023 Jan Schaumann <jschauma@netmeister.org> split(1): add '-c' to continue creating files

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

This patch 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

Reviewed by: christos
Approved by: kevans
Different Revision: https://reviews.freebsd.org/D38553