我想在文件中搜索字符串,字符串是dd // mm。我需要計算這些字符串的出現次數。我怎麼能在awk中使用這個字符串。目前我使用這樣的事情,但結果是空的:在文件如何在linux中的awk shell腳本中搜索dd/mm
awk ' /$1/$2/ {i++}END{print i}' filename.text
樣本內容
09/Oct/2012 filecontentesfilecontetn
09/OCt/2012 filecontentesfilecontetn
08/OCt/2012 filecontentesfilecontetn
您的預期產出到底是什麼? – Steve
我需要WC此字符串09月/ 10月,其結果將是2 – sona