来源:https://superuser.com/questions/600385/remove-single-file-from-zip-archive-on-linux
- 使用
unzip -l abc.zip
查看文件列表 - 使用
zip -d abc.zip path/of/file.jpg
删除文件path/of/file.jpg
来源:https://superuser.com/questions/600385/remove-single-file-from-zip-archive-on-linux
unzip -l abc.zip
查看文件列表zip -d abc.zip path/of/file.jpg
删除文件 path/of/file.jpg