判斷目錄:
path="/home" #if [ ! -d ${path} ];then if [ -d ${path} ];then echo dir ${path} exist! else echo dir ${path} not exist! fi
影片教學推薦:linux影片教學
判斷檔案:
file="/home/log.txt" if [ -f ${file} ];then echo file ${file} exist! else echo file ${file} not exist! fi
相關文章教學推薦:linux教學
以上是linux中如何利用shell判斷檔案或目錄是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!