grep 命令 完全匹配 选项
使用 -w 选项可以使 grep 命令只匹配完全匹配的单词,而不是匹配包含该单词的字符串。例如:
-w
grep
grep -w "apple" file.txt
该命令将只匹配包含完全单词 "apple" 的行,而不是包含 "pineapple" 或 "applesauce" 的行。