用于源代码分发的归档格式有哪些?
我正在构建一个不同开源包的小集合,用于一些内部测试,并使用 find 从各个站点的 wget-s 中查找源代码。用于源代码的各种存档格式是什么,我可以提供这些格式
find ./ -type f -regex ".\(tar.gz\|zip\)$"
来有效地定位源存档...
tar.gz、.zip、.bz2、.gz、.rar、.jar
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,从理论上讲,此维基百科页面上提到的任何存档/压缩格式都可以< /em> 以及未列出的任何内容都可以使用。但我认为您会发现,在大多数情况下,您列出的类型将是最常用的。就我个人而言,我只使用过 zip 文件和各种 tar 格式(.tar.bz2 等)来存档我的代码。
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.