0
我發現如何從以下問題輸出文件的數字chmod值。bash chmod編號條件
https://unix.stackexchange.com/questions/46915/get-the-chmod-numerical-value-for-a-file
我將如何檢查,如果這個數字比在條件一定的值?
注:
host:path user$ stat -f "%OLp" file
644
# !/bin/bash
file=/path/file
if [ stat -f "%OLp" $file -gt 644 ]; then
echo Greater than 644
else
echo Less than 644
fi
Syntax error: ./bash.sh: line x: [: too many arguments
輝煌!謝謝你,有一個答案和代表。 –
接受的答覆。但是,這是一個新帳戶。看起來我不能upvote,直到我得到15代表:) –