]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/ntp/scripts/stats/dupe.awk
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.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 }