File: resptime.awk

package info (click to toggle)
ns2 2.35%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 78,864 kB
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 818; awk: 525; csh: 355
file content (12 lines) | stat: -rwxr-xr-x 121 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/gawk -f
{
	if (NR > 1) 
		sum += ($3 - $2);
} 

END {
	if (NR > 1) 
		print sum/(NR-1); 
	else 
		print -1;
}