xg2gp.awk
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/usr/bin/awk -f
  2. # convert from raw2xg output into gnuplot format
  3. BEGIN {system("rm -f acks packets drops")}
  4. {if (ack) print $1 " " $2 >>"acks"}
  5. {if (pkt) print $1 " " $2 >>"packets"}
  6. {if (drp) print $1 " " $2 >>"drops"}
  7. $1 ~ /^.ack/ {ack=1}
  8. $1 ~ /^.packets/ {pkt=1}
  9. $1 ~ /^.drops/ {drp=1}
  10. $1 ~ /^$/ {ack=0; pkt=0; drp=0}