linux特定文件权限查找
根据文件权限筛选
## 文件
find /usr/app/ -type f -perm 644 -exec ls -l {} \;
## 目录
find /usr/app -type d -perm 777 -exec ls -ld {} \;
## 文件
find /usr/app/ -type f -perm 644 -exec ls -l {} \;
## 目录
find /usr/app -type d -perm 777 -exec ls -ld {} \;