Closed aabacchus closed 2 years ago
if a package contains a file with a quote in it's name, xargs complains about an unmatched quote and fails, and the pipeline is aborted. this patch separates the files by NULL instead of newline so that xargs can handle such filenames.
ach, xargs -0 isn't POSIX. perhaps there's a better way to do this, such as prefixing quotes in the input with backslashes to escape them.
xargs -0
if a package contains a file with a quote in it's name, xargs complains about an unmatched quote and fails, and the pipeline is aborted. this patch separates the files by NULL instead of newline so that xargs can handle such filenames.