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.
我正在运行一个find命令来递归搜索文件。每当遇到用户没有读取权限的目录时,find就会引发访问错误,这会在脚本运行时导致问题。
find
有没有一种方法可以将其限制find为仅运行脚本的用户具有读取权限的目录?
谢谢。
您可以使用该标志将运行的用户限制find为仅具有读取访问权限的目录,但这不会抑制错误消息,因为它必须调用它以确定目录/文件是否可读。您必须将它们输出或其他东西:find-readableaccess()
-readable
access()
find / -readable 2> /dev/null