⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atime.awk

📁 网卡驱动相关实例 这是和网卡NT KMD驱动程序有关的一些资料和例子。主要是以下三方面内容: 3.1 article 一些有用的文档 3.2 Canberra 网络诊听工具Ethern
💻 AWK
字号:
$6 ~ /^ack/ && $5 !~ /[SFR]/ 	{	# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -