[shell] AWK筆記

[shell] AWK筆記 | Toknow Blog

[shell] AWK筆記

 

[shell] AWK筆記

 

計算web log IP次數

?
1
awk '{++ip[$1]}END{for(key in ip) print key,ip[key]}' accesslog

忽略空字串資料

?
1
awk '{if($2 !~ /^[ ]*$/)  print "second field isnot  empty" }}'

印出某欄位後所有資料

?
1
awk '{for(i=2;i<=NF;i++){printf "%s ", $i}; printf "\n"}'

你可能感兴趣的:(shell)