Error report: There is an error in the manual of findutilis
"zhaiyn" <[email protected]> Mon, 7 Jul 2025 16:46:33 +0800
| Newsgroups | gmane.comp.gnu.findutils.bugs |
|---|---|
| Message-ID | <[email protected]> |
Because I do not have the ability to write in English, the following content is in Chinese. Sorry!
出现错误的内容链接: https://www.gnu.org/software/findutils/manual/html_node/find_html/Finding-the-Shallowest-Instance.html
在该文中,示例代码是这样写的:
find repo/ \
-exec test -d {}/.svn \; -or \
-exec test -d {}/.git \; -or \
-exec test -d {}/CVS \; -print -prune
这是错误的,它不能实现正文中描述的功能,原因是: -or 的优选级低于 -and .
正确的代码应该如下:
find repo/ \
\( -exec test -d {}/.svn \; -or \
-exec test -d {}/.git \; -or \
-exec test -d {}/CVS \; \) -print -prune
如果的这个错误报告得到确认,请回复告知我,这会让我有一些成就感,谢谢!
zhaiyn
[email protected]