Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 ACL 的 Debian 文件服务器。使用 getfacl -RI 获取所有文件,但我只需要目录。
我试图只列出目录,然后将其输入到 getfacl:
ls -R | grep ":$" | cut -d: -f 1 > file.txt
然后 getfacl cat file.txt。但是很多目录都有空格,我们不能改。
cat file.txt
谢谢你的帮助。
你的问题并不难,不是吗,只是痛苦。对于那个很抱歉。为了获得可靠的性能,您可能必须使用由man 5 acl.
man 5 acl
如果您碰巧使用 Python(我自己不使用它,而是出于 Perl 的习惯),那么似乎存在 Debian 包python-pylibacl,它看起来好像可以满足您的需求。
祝你好运。