2010年1月19日 星期二

搜尋字串-grep

--找出有pc字串的句字
cat testabc.txt | grep 'pc'

--找出不含pc字串的句字
cat testabc.txt | grep -v 'pc'

--顯示出行數
cat testabc.txt | grep -n 'pc:'

沒有留言: