xref: /freebsd/contrib/ntp/scripts/stats/dupe.awk (revision 1a13f2e6b444dd8048aebd2ac1f0b8fae9e3088f)
1#
2# delete duplicate lines
3#
4{
5	if (old != $0)
6		printf "%s\n", $0
7	old = $0
8}
9