Grepping for exact words with UNIX

后端 未结 2 396
野性不改
野性不改 2020-12-03 11:32

I want to search Exact word pattern in Unix. Example: Log.txt file contains following text:

aaa
bbb
cccaaa   ---> this should not be counted          


        
2条回答
  •  無奈伤痛
    2020-12-03 12:18

    Word boundary matching is an extension to the standard POSIX grep utility. It might be available or not. If you want to search for words portably, I suggest you look into perl instead, where you would use

    perl -ne 'print if /\baaa\b/' $EAT_Setup_BJ3/Log.txt
    

提交回复
热议问题