Forked from jfarsen/gist:5844dc7880b235f32d60c8d4edc4a34c
Created
August 13, 2018 09:10
-
-
Save prithv1/83655754abc13ed80e06bfcc662177c9 to your computer and use it in GitHub Desktop.
Revisions
-
jfarsen created this gist
Aug 9, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ @url https://major.io/2007/07/05/bintar-argument-list-too-long/ If you find yourself stuck with over 30,000 files in a directory (text files in this example), packing them into a tar file can be tricky. You can get around it with this: find . -name '*.txt' -print >/tmp/test.manifest tar -cvzf textfiles.tar.gz --files-from /tmp/test.manifest find . -name '*.txt' | xargs rm -v