溫馨提示×

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

小億
89
2024-02-23 14:26:27
欄目: 編程語言

在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"。

0