浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

[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"}'
posted on 2012-03-10 22:13  lexus  阅读(153)  评论(0编辑  收藏  举报