grep 全词匹配和模糊匹配时间:2021-05-06 09:48:46grep实际使用中,根据常需求不同,常需要进行精准或者默默匹配。 模糊匹配 $ grep "abc" # 结果为abcd, abcde, abc等 精确匹配 $ grep -w "abc" # 结果为abc