正如Andy White所说,你必须使用fgrep才能匹配平原,或者逃避点。
原文链接:https://www.f2er.com/regex/357603.html所以你必须写(-type f是只有这些文件:你显然不想要的目录。):
find . -type f | xargs fgrep '...'
或者如果还要使用grep:
find . -type f | xargs grep '\.\.\.'
而且如果你只想要当前的目录而不是其子目录:
find . -maxdepth 1 -type f | xargs fgrep '...'