Junio C Hamano schrieb: > Mark Levedahl <mlevedahl@xxxxxxxxx> writes: > >> + printf "$mandir/%s\n" $(git ls-tree -r --name-only $head) | xargs >> gzip -f > > No risk that ls-tree output is too long to fit within the exec > args limit to run printf? Perhaps this instead? git ls-tree -r --name-only $head | (cd "$mandir" && xargs gzip -f) René - 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