summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/scripts/stats/loop.sh
blob: 619eeb8c66afc30ce0061bd7a4478d79f2a5e2f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/csh
#
# Script to summarize loopstats files
#
set x = `ls loopstats.*`
foreach dayfile ( $x )
        if ($dayfile == $x[$#x]) continue
        echo " "
        echo $dayfile
	awk -f loop.awk $dayfile
        rm -f $dayfile
end

OpenPOWER on IntegriCloud