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.
我正在尝试 grep -R 一个确切版本的 apache。 我留下了包含和手册,因为它没有必要更改。 这是我正在使用的命令:
grep -R 2.2.24 * | grep -v manual | grep -v include | cut -d':' -f 1
我想知道如何为每个文件找到一个结果? 谢谢
命令中的cut表明您正在查找与指定字符串匹配的文件。
cut
find . ! -path "*/manual/*" ! -path "*/include/*" -type f -exec grep -Fl 2.2.24 {} \;
应该为你工作。