freebsd-dev/usr.sbin/xntpd/scripts/stats/clock.sh
1993-12-21 18:36:48 +00:00

18 lines
349 B
Bash
Executable File

#!/bin/csh
#
# Script to summarize clockstats files
#
set x = `ls clockstats.*`
foreach dayfile ( $x )
if ($dayfile == $x[$#x]) continue
echo " "
echo $dayfile
awk -f clock.awk $dayfile
awk -f itf.awk $dayfile >>itf
awk -f etf.awk $dayfile >>etf
awk -f ensemble.awk $dayfile >>ensemble
awk -f tdata.awk $dayfile >>tdata
rm -f $dayfile
end