linux shell 判断*.gz 文件是否存在,不存在打印信息
时间: 2024-03-06 13:51:22 浏览: 154
检查文件是否存在
可以使用以下的 shell 脚本代码来判断 *.gz 文件是否存在:
```shell
if [ -e *.gz ]; then
echo "The *.gz file exists."
else
echo "The *.gz file does not exist."
fi
```
在上面的代码中,`-e` 参数用来判断文件是否存在,`*.gz` 表示匹配当前目录下所有的 `*.gz` 文件。如果该文件存在,则输出 "The *.gz file exists.",否则输出 "The *.gz file does not exist."。
阅读全文