On Thu, 2006-06-22 at 05:30 -0700, Paul Heinlein wrote:
On Thu, 22 Jun 2006, Robert wrote:
<snip>
I think that passing -print0 output to grep is the culprit. How about using find to identify the files rather than grep:
find . -depth ! -name '*.iso' -print0 | cpio ...
Yes. That is a much better way. Only suggestion I make is "-iname" incase some of those files come from a well-known environment that tends towards a "capitalist society" :-).
<snip>