shell 判斷檔案或路徑是否存在

oxoxooxx發表於2011-10-11

#!/bin/sh

filePath="/Users/wade/"
fileName="/Users/wade/Desktop/test.pdf"

#這裡的-x 引數判斷$myPath是否存在並且是否具有可執行許可權
if [ ! -x "$filePath"]; then
mkdir "$filePath"
fi

#這裡的-d 引數判斷$myPath是否存在
if [ ! -d "$filePath"]; then
mkdir "$filePath"
fi

#這裡的-f引數判斷$myFile是否存在
if [ ! -f "$fileName" ]; then
touch "$fileName"
fi

#其他引數還有-n,-n是判斷一個變數是否是否有值
if [ ! -n "$myVar" ]; then
echo "$myVar is empty"
exit 0
fi

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23937368/viewspace-1055611/,如需轉載,請註明出處,否則將追究法律責任。

相關文章