Miek Gieben <[EMAIL PROTECTED]> writes: >% find ~/tmp/silly_names -print > /tmp/filelist > >make a tar of it: > tar --create --file /tmp/test.tar --files-from /tmp/filelist --verbose
Will the errors occur, if you use GNU find with predicate '-print0' rather than '-print' and tar's option '--null'? Try the following commands: $ find ~/tmp/silly_names -print0 > /tmp/filelist $ tar --create --file /tmp/test.tar --null \ --files-from /tmp/filelist --verbose If the errors persist, then that's a bug indeed. -- Wenn Sie mir E-Mail schreiben, stellen | When writing me e-mail, please Sie bitte vor meine E-Mail-Adresse | precede my e-mail address with meinen Vor- und Nachnamen, etwa so: | my full name, like Helmut Waitzmann <[EMAIL PROTECTED]>, (Helmut Waitzmann) [EMAIL PROTECTED] _______________________________________________ Bug-tar mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-tar
