DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Avoiding Tar's (or Any Other Commandline's) Argument List Too Long Error
When you try to tar a large number of files (cp, mv, or anything else) you may hit the limit of ARG_MAX. You can overcome this by generating a list of files then feeding it to tar as follows:
# generate the file list find -iname '*.ext' > fileList.txt #run tar passing it the file list tar czvf archive.tar.gz --files-from fileList.txt # a shorthand of this would be: find . -name '*.ext' -print | tar -cvzf archive.tar.gz --files-from -






Comments
Snippets Manager replied on Tue, 2007/02/20 - 2:39pm
Snippets Manager replied on Sat, 2006/08/26 - 3:10am