]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/ntp/scripts/stats/dupe.awk
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / ntp / scripts / stats / dupe.awk
1 #
2 # delete duplicate lines
3 #
4 {
5         if (old != $0)
6                 printf "%s\n", $0
7         old = $0
8 }