shell脚本判断两个文件同时存在
时间: 2023-07-17 13:09:48 浏览: 225
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
```
阅读全文