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 和 fgrep,后者使用 Aho–Corasick 字符串匹配算法。当我使用 fgrep (grep -F) 时,你能给我一个用例吗,为什么要创建 fgrep?
grep -F不匹配正则表达式,只匹配精确/固定字符串,因此它更快。当您不需要正则表达式语法时,也可以使用它,以免转义字符串中包含的正则表达式字符。
grep -F
不推荐直接调用fgrep。你应该使用grep -F.
fgrep