2
所以我通過掃描目錄,並希望測試,如果目錄中的每個元素是一個目錄:
FILES=$PWD/*
for f in $FILES
do
if [ $f is a directory ]; then #Correct conditional needed here
echo "Dir: $f"
fi
done
我用什麼方法/函數測試$ f是一個目錄?
所以我通過掃描目錄,並希望測試,如果目錄中的每個元素是一個目錄:
FILES=$PWD/*
for f in $FILES
do
if [ $f is a directory ]; then #Correct conditional needed here
echo "Dir: $f"
fi
done
我用什麼方法/函數測試$ f是一個目錄?
使用-d
檢查:
if [ -d "$f" ]; then