Skip to content

Conversation

justbuchanan
Copy link
Contributor

The tool is often used like:

$ kzip merge -output out.kzip $(find build/ -name "*.kzip")

This works in most cases, but can fail if there are too many files and the maximum number of commandline arguments is exceeded. This new flag is a workaround that allows you to do instead:

$ find build/ -name "*kzip" > filelist.txt
$ kzip merge -output out.kzip -input_file_list filelist.txt

The tool is often used like:

$ kzip merge -output out.kzip $(find build/ -name "*.kzip")

This works in most cases, but can fail if there are too many files and the maximum number of commandline arguments is exceeded. This new flag is a workaround that allows you to do instead:

$ find build/ -name "*kzip" > filelist.txt
$ kzip merge -output out.kzip -input_file_list filelist.txt
@justbuchanan justbuchanan requested a review from a team December 14, 2023 01:39
@justbuchanan justbuchanan enabled auto-merge (squash) February 10, 2024 00:05
@justbuchanan justbuchanan enabled auto-merge (squash) February 10, 2024 00:06
@justbuchanan justbuchanan merged commit 052a0bb into kythe:master Feb 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants