source2006/devtools/bin/uniq.pl
2020-02-25 05:28:57 +02:00

6 lines
94 B
Perl

while( <> )
{
next if( defined( $prevline ) && $_ eq $prevline );
$prevline = $_;
print;
}