I'm building a small collection of different open source packages for some internal testing and using find to locate source codes from wget-s of the various sites. What are the various archiving formats used for source codes, which I can supply to

find ./ -type f -regex ".\(tar.gz\|zip\)$" 

to locate source archives efficiently...

tar.gz, .zip, .bz2, .gz, .rar, .jar

link|improve this question

65% accept rate
feedback

1 Answer

Well, theoretically, any of the archive/compression formats mentioned on this wikipedia page could be used as well as any not listed there. But I think you'll find that for the most part, the types you've listed will be used most. Personally I've only ever used zip files and various tar formats (.tar.bz2, etc) to archive my code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.