Find 排除目錄
Posted on Wed 15 March 2017 in note • Tagged with find, linux, utlls
使用 find 可以很簡單的找出目標檔案來做處理,記錄一下要排除特定目錄怎麼做。
目標是排除 .git 下的所有檔案
:::bash
find . -path "./.git/*" -prune …
Continue reading
Posted on Wed 15 March 2017 in note • Tagged with find, linux, utlls
使用 find 可以很簡單的找出目標檔案來做處理,記錄一下要排除特定目錄怎麼做。
:::bash
find . -path "./.git/*" -prune …