学堂 学堂 学堂公众号手机端

如何用shell判断一个文件是否存在

lewis 2年前 (2023-05-02) 阅读数 9 #技术

可以使用以下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"。


版权声明

本文仅代表作者观点,不代表博信信息网立场。

热门