Error: -bash: /usr/bin/zip: Argument list too long
作者:XD / 发表: 2021年12月24日 04:00 / 更新: 2021年12月24日 04:01 / 编程笔记 / 阅读量:1889
When typing this line zip -r images.zip images/*.jpg
, it might output this error: -bash: /usr/bin/zip: Argument list too long. Because there are too many images to zip, you can solve the error with the below line.
find images/ -name '*.jpg' -print | zip images.zip -@
相关标签