Monday, June 22, 2020

List all regular files in Unix system with a global read permission.

List all regular files in Unix system with a  global read permission.
find / -perm -o=r -exec test -f {} \; -exec ls -Al {} \; 2>/dev/null

1 comment: