Find Command

Find Command

FIND COMMAND TO CHECK THE FILE PERMISSION


Directory:
~~~~~~~~~
find <your-dir> -type d -not -perm 755 -exec ls -ld {} \;

File:
~~~~
find <your-dir> -type f -not -perm 755 -exec ls -ld {} \;

Comments