shell脚本判断文件存在
时间: 2023-04-28 12:05:55 浏览: 102
shell_ip_orangewgz_linux_shell_shell编程_shell脚本_
可以使用 "-e" 或 "-f" 参数来判断文件是否存在。
例如:
```
if [ -e /path/to/file ]; then
echo "file exists"
else
echo "file does not exist"
fi
```
也可以使用 "-f"
```
if [ -f /path/to/file ]; then
echo "file exists"
else
echo "file does not exist"
fi
```
如果你要判断目录是否存在,可以使用"-d"参数。
```
if [ -d /path/to/dir ]; then
echo "dir exists"
else
echo "dir does not exist"
fi
```
阅读全文