"Alex Riesen" <raa.lkml@xxxxxxxxx> writes: > On 7/30/07, David Kastrup <dak@xxxxxxx> wrote: >> commands like git-archive take a file list on the command line. If >> the number of files does no longer fit the argv limitations, this >> causes a problem. >> >> So it might be nice to be able to treat some "filenames" in a file >> list special: >> >> -@=filename (read LF-lines with filenames from filename) >> -@=- (read lines with filenames from stdin) >> -@z=filename (read NUL-terminated list with filenames from filename) >> -@z=- (same from stdin) > > git-update-index and the like use --stdin and -z. > What do you need the one with filename for? Uh, git-archive? I was thinking that -z could conflict with other uses for in/output, but indeed git-archive does not seem to have any other area that would be affected by -z. So this request at the current point of time can be reduced to let git-archive have --stdin and -z options. That is actually important as one can't concatenate zip-files, and so xargs does not help. But file lists are also important for things like git-diff (for which the NUL-endedness of input is a separate issue from its output). So instead of adding stdin piecemeal, it was some sort of idea to have this generally available in file lists. If somebody can come up with a nice syntax. -- David Kastrup - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html