xref
: /
freebsd
/
contrib
/
ntp
/
scripts
/
stats
/
dupe.awk
(revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
2
# delete duplicate lines
3
#
4
{
5
if
(
old
!= $
0
)
6
printf
"%s\n"
, $
0
7
old
= $
0
8
}
9