findutils note
案例討論
探討文章
鳥哥的私房菜
- 第七章、Linux 檔案與目錄管理 / 5. 指令與檔案的搜尋:/ find
指令範例
$ find . ! -name '*.txt'
$ find . ! -name '*.txt' -type f -exec rm '{}' \;
$ find . ! -name '*.txt'
$ find . ! -name '*.txt' -type f -exec rm '{}' \;