Phillip Susi <[email protected]> ha escrit: > find foo -print0 | tar cf foo.tar -T - --null
That's wrong. You should place --null before -T: find foo -print0 | tar cf foo.tar --null -T - Both `--null' and `--no-null' options affect only options that follow them in the command line. Regards, Sergey
