记录 | zip压缩报错:zip warning: name not matched: xxx/xxx/xxx

zip 压缩报错:

zip warning: name not matched: xxx/xxx/xxx

解决:

这个报错的原因是要压缩的文件是个符号链接文件,但指向的文件不存在,

解决方法是加上-y参数,意思是 store symbolic links as the link instead of the referenced file, 也就是保存符号链接。

zip -r -y test.zip test/

你可能感兴趣的:(踩坑记录,zip,linux,压缩,符号链接)