1. 程式人生 > >Linux:從文件中搜索關鍵字並顯示行數(cat,grep函數)

Linux:從文件中搜索關鍵字並顯示行數(cat,grep函數)

img div 格式 gre 搜索 運行 .cn src images

假如有test1.txt的格式如下圖所示:

技術分享

有test2.txt的內容如下:

技術分享

現需將test2.txt含有的關鍵字的行搜索出來並顯示行數

則可以用到命令:

cat test1.txt | grep -nf test2.txt

  運行後,效果如下:

技術分享

36840733和36909134表示含有這兩個關鍵字所在的行數。

Linux:從文件中搜索關鍵字並顯示行數(cat,grep函數)