#!/usr/bin/gnuplot
#
# For example run: 
#   tcpping -c cisco.txt www.cisco.com
# and then run this script.

set autoscale
set xdata time
set timefmt "%s"
#set timefmt "%Y%m%d%H%M%S"
set format x "%H:%M"
set xlabel "August 24th 2004"
set ylabel "response in msec"
set key title "www.cisco.com (198.133.219.25)"
plot 'cisco.txt' using 2:3 notitle
pause -1 "Press return to quit... "
