怎么使用shell判断文件是否存在

avatar
作者
筋斗云
阅读量:0

在shell脚本中可以使用-f选项判断文件是否存在,示例如下:

#!/bin/bash  file_path="/path/to/your/file"  if [ -f "$file_path" ]; then     echo "File exists" else     echo "File does not exist" fi 

在上面的示例中,首先定义了文件的路径file_path,然后使用-f选项来判断文件是否存在,如果文件存在,则输出"File exists",如果文件不存在,则输出"File does not exist"。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!