在 Bash 中檢查檔案是否存在

Fumbani Banda 2022年5月14日
在 Bash 中檢查檔案是否存在

本教程使用 test 命令檢查 bash 中是否不存在常規檔案。

在 Bash 中檢查檔案是否不存在 test

test 命令有一個邏輯非運算子,即 !。我們還將新增 -f 選項來指定檔案。在這種情況下,條件測試檔案是否存在。

#!/bin/bash
if [ ! -f check_fil.sh ];
then
     printf 'No such file\n'
else
     printf 'File exists\n'
fi

輸出:

No such file
Fumbani Banda avatar Fumbani Banda avatar

Fumbani is a tech enthusiast. He enjoys writing on Linux and Python as well as contributing to open-source projects.

LinkedIn GitHub

相關文章 - Bash File