可以使用以下shell脚本来判断一个文件是否存在:
#!/bin/bash
file="/path/to/file"
if [ -f "$file" ]; then
echo "File exists"
else
echo "File does not exist"
fi
上面的脚本首先定义了要判断的文件路径,然后使用-f
选项来判断文件是否存在。如果文件存在,则输出"File exists",否则输出"File does not exist"。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读:怎么用shell判断一个文件是否存在