我想在 Unix 中搜索确切的单词模式。示例:Log.txt
文件包含以下文本:
aaa
bbb
cccaaa ---> this should not be counted in grep output looking for aaa
我正在使用以下代码:
count=$?
count=$(grep -c aaa $EAT_Setup_BJ3/Log.txt)
这里的输出应该是 ==> 1 而不是 2,使用上面的代码我得到 2 作为输出。缺少一些东西,所以有人可以帮我解决这个问题吗?