atime.awk
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· AWK 代码 · 共 20 行
AWK
20 行
$6 ~ /^ack/ && $5 !~ /[SFR]/ { # SCCSID: @(#)atime.awk 4.1 (ULTRIX) 10/15/90 # given a tcpdump ftp trace, output one line for each ack # in the form # <ack time> <seq no> # where <ack time> is the time packet was acked (in seconds with # zero at time of first packet) and <seq no> is the tcp sequence # number of the ack divided by 1024 (i.e., Kbytes acked). # # convert time to seconds n = split ($1,t,":") tim = t[1]*3600 + t[2]*60 + t[3] if (! tzero) { tzero = tim OFS = "\t" } # get packet sequence number printf "%7.2f\t%g\n", tim-tzero, $7/1024 }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?