用于源代码分发的归档格式有哪些?

发布于 2024-10-31 06:05:03 字数 253 浏览 4 评论 0原文

我正在构建一个不同开源包的小集合,用于一些内部测试,并使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄离 2024-11-07 06:05:03

好吧,从理论上讲,此维基百科页面上提到的任何存档/压缩格式都可以< /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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文