gpt4 book ai didi

bash - zip 警告 - 名称不匹配

转载 作者:行者123 更新时间:2023-12-03 23:56:21 24 4
gpt4 key购买 nike

在我的 bash 脚本中使用 zip 时出现以下错误
zip warning: name not matched: test.png test2.png

#!/bin/bash
files_to_zip="test.png test2.png"
zipfile_name=result$(date "+%Y.%m.%d-%H.%M.%S").zip
zip "$zipfile_name" "$files_to_zip"

注意:图像与脚本位于同一目录中,当我执行 zip test.zip test.png test2.png 时,zip 就创建好了。

最佳答案

当名称在相同的引号内组合时,整个字符串被视为文件名。用

zip "$zipfile_name" $files_to_zip

反而。如果您的 png 名称包含特殊字符(如空格) - 在 $files_to_zip 中添加引号或转义此字符多变的

关于bash - zip 警告 - 名称不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46015202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com