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.
我需要获取 FreeBSD 服务器上所有设置了粘性位的文件(无目录)的列表。我相当确定这是通过 find 完成的,但我无法获得正确的格式。
谢谢!
这是一个简单的:
find . -type f -perm -1000 -print
这应该这样做: