我有一個文件$ HOME /富/ foo.mov if [[ -f $HOME/**/*.mov ]]; then
echo "file is there" else
echo "file is not there"
fi
回聲 「文件不存在」。然而, if [ -f $HOME/**/*.mov ]]; then
echo "file is there" el
這裏就是我試圖運行: grep "this is a test" * | wc -l
這裏是我得到的錯誤: Argument list too long
基本上我想指望在一個目錄多個文件如何有一個特定的字符串在其中。 我已經看到了幾個與這個錯誤有關的問題,但他們都沒有重點關注之後的結果。任何建議,將不勝感激。