diff options
Diffstat (limited to 'usr.sbin/xntpd/scripts/stats/peer.sh')
-rwxr-xr-x | usr.sbin/xntpd/scripts/stats/peer.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/usr.sbin/xntpd/scripts/stats/peer.sh b/usr.sbin/xntpd/scripts/stats/peer.sh deleted file mode 100755 index b5d8d29..0000000 --- a/usr.sbin/xntpd/scripts/stats/peer.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/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 - |