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.
如何输出 zip 文件的评论存档?基本上我想将 zip 存档注释复制到剪贴板。
zip -z file
提示我输入新的评论,我怎么能只输出它,没有提示?
你需要使用unzip而不是zip这样做。
unzip
zip
unzip -z file
将输出保存在 zip 文件中的注释。
在 android 中,busybox unzip 没有 -z 选项(假设甚至安装了busybox)。
ZIP="/path/to/archive.zip"; X=$(echo . | zip -z "$ZIP" | head -2 | tail -1); echo $X | zip -z "$ZIP" >/dev/null; echo $X