Tar: Archiving Selected Files
Published on 21 Sep 2003Tags #Linux
Instead of letting tar recursively add files to the archive simply provide a file list on stdin.
find . -type f -maxdepth 1 | tar -czf ARCHIVE.tar.gz -T -
Instead of letting tar recursively add files to the archive simply provide a file list on stdin.
find . -type f -maxdepth 1 | tar -czf ARCHIVE.tar.gz -T -