Hello, I have a Debian Fileserver with ACLs. With getfacl -R I get all the files, but I only need the directories.
I tried to only list the directories and then input that to getfacl:
ls -R | grep ":$" | cut -d: -f 1 > file.txt
and then getfacl cat file.txt
. But a lot of directories have spaces, and we can't change them.
Thanks for your help.
[link][4 comments]