shell 判断文件是否存在
时间: 2023-04-23 11:02:53 浏览: 115
①判断/bin目录下date文件是否存在-shell脚本 编程
在 shell 中,可以使用 `test` 命令或者 `[ ]` 来判断文件是否存在。
使用 `test` 命令:
```
if test -e /path/to/file; then
echo "File exists"
else
echo "File does not exist"
fi
```
使用 `[ ]`:
```
if [ -e /path/to/file ]; then
echo "File exists"
else
echo "File does not exist"
fi
```
注意:
-e 是用来判断文件是否存在的参数。
-f 是用来判断文件是否是普通文件(非目录)。
-d 是用来判断文件是否是目录。
阅读全文