Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为FantomHeroku buildpack编写一个自定义(heroku-buildpack-fantom),并且作为脚本的一部分,我已经下载了一个文件(来自语言供应商),但是如何解压缩它?compile.zip
Heroku
buildpack
compile
.zip
unzip不是公认的命令。
unzip
gunzip存在,但我不能用它来解压缩 .zip 文件。
gunzip
我错过了什么?
即使(默认情况下)Linux 没有预装unzip,Heroku dyno 确实有一个jar命令。所以以下工作正常:
jar
> jar xf wotever.zip
请务必在其上运行“文件”命令。我从 SourceForge 获得了一个实际上是 bzip2 编码的 .zip 文件,而 Heroku 在 tar 上有 bunzip2 解码器和 -j (--bzip2) 选项来处理它。