#!/sprite/cmds/csh -f set tmpfile = /tmp/xg$$ onintr cleanup cat << EOF > $tmpfile "send 0.00 0.3700 1.00 0.5400 2.00 0.7200 3.00 0.8900 4.00 1.0500 5.00 1.2200 6.00 1.3800 7.00 1.5600 8.00 1.7200 9.00 1.8800 10.00 2.0800 11.00 2.2300 12.00 2.3900 13.00 2.5500 14.00 2.7100 15.00 2.8900 16.00 3.0400 17.00 3.2300 18.00 3.4100 19.00 3.5600 20.00 3.7300 21.00 3.9200 22.00 4.0700 23.00 4.2100 24.00 4.3800 25.00 4.5200 26.00 4.7000 27.00 4.8600 28.00 5.0300 29.00 5.2000 30.00 5.3600 31.00 5.5200 32.00 5.6800 "receive 0.00 0.3700 1.00 0.5400 2.00 0.7229 3.00 0.8900 4.00 1.0500 5.00 1.2249 6.00 1.3911 7.00 1.5600 8.00 1.7200 9.00 1.8800 10.00 2.0800 11.00 2.2300 12.00 2.3924 13.00 2.5500 14.00 2.7100 15.00 2.8958 16.00 3.0461 17.00 3.2397 18.00 3.4100 19.00 3.5600 20.00 3.7375 21.00 3.9200 22.00 4.0700 23.00 4.2312 24.00 4.3800 25.00 4.5200 26.00 4.7047 27.00 4.8795 28.00 5.0859 29.00 5.2792 30.00 5.3924 31.00 5.5200 32.00 5.6914 EOF xgraph -x "Kbytes per packet" -y "Milliseconds" -t "Time per packet" \ $tmpfile cleanup: rm -f $tmpfile