freebsd-dev/contrib/ntp/scripts/stats/dupe.awk
Pedro F. Giffuni 646a7fea0c Clean some 'svn:executable' properties in the tree.
Submitted by:	Christoph Mallon
MFC after:	3 days
2013-01-26 22:08:21 +00:00

9 lines
79 B
Awk

#
# delete duplicate lines
#
{
if (old != $0)
printf "%s\n", $0
old = $0
}