aaron 2002/08/01 15:19:27
Modified: flood/examples analyze-relative
Log:
Fix tab formatting, not all shells interpolate '\t's.
Submitted by: Reini Urban <[EMAIL PROTECTED]>
Revision Changes Path
1.2 +1 -1 httpd-test/flood/examples/analyze-relative
Index: analyze-relative
===================================================================
RCS file: /home/cvs/httpd-test/flood/examples/analyze-relative,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- analyze-relative 28 Aug 2001 00:06:42 -0000 1.1
+++ analyze-relative 1 Aug 2002 22:19:27 -0000 1.2
@@ -9,7 +9,7 @@
fi
echo "Slowest pages on average (worst 5):"
echo " Average times (sec)"
-echo "connect\twrite\tread\tclose\thits\tURL"
+gawk 'BEGIN{printf("connect\twrite\tread\tclose\thits\tURL\n");}'
tail +1 $1 | gawk '
/OK.*https?/ {
split($8, urlarray, /\?/); url = urlarray[1]; ht[url] = url;