按特定副檔名查詢檔案

要查詢當前路徑中某個副檔名的所有檔案,你可以使用以下 find 語法。它的工作原理是利用 bash's 內建的 glob 構造來匹配所有具有 .extension 的名稱。

find /directory/to/search -maxdepth 1 -type f -name "*.extension"

要從當前目錄中單獨找到 .txt 型別的所有檔案,請執行

find . -maxdepth 1 -type f -name "*.txt"