xntpd 3.3b from UDel
[unix-history] / contrib / xntpd / scripts / stats / peer.sh
#!/bin/csh
#
# Script to summarize peerstats files
#
set x = `ls peerstats.*`
foreach dayfile ( $x )
if ($dayfile == $x[$#x]) continue
echo " "
echo $dayfile
awk -f peer.awk $dayfile
rm -f $dayfile
end