find files with ACLs set
getfacl
can dump ACLs recursively, and it has a --skip-base
option for ignoring files without ACLs.
getfacl -R -s -p /directory | sed -n 's/^# file: //p'
getfacl
can dump ACLs recursively, and it has a --skip-base
option for ignoring files without ACLs.
getfacl -R -s -p /directory | sed -n 's/^# file: //p'