sh指令碼判斷路徑是否存在

远方是什么样子發表於2024-05-29

#!/bin/bash

if [ -d "/path/to/directory" ]; then
    echo "Directory exists"
else
    echo "Directory does not exist"
fi

相關文章