搜尋除 755 之外的檔案權限

搜尋除 755 之外的檔案權限

實際上,在 AIX 中,如何在多個目錄及其下面的目錄中搜尋不具有 755 個特定權限的檔案。

所以我想搜尋、/path/to/等等,但沒有。/path/to/mydir/path/to/mydir/andthisoneto/path

答案1

如果我理解正確的話,你想要這個:

find /path -mindepth 2 -type f -not -perm 0755

或者也許只是這樣,如果我的理解不正確的話:

find /path/to -type f -not -perm 0755

答案2

所以最後我發現最好的方法是這樣的:

  ls -l `find /path/to -type f ! -perm 0755`

感謝所有幫助過我的人。

相關內容