hl2sdk/devtools/bin/uniqifylist.pl
Scott Ehlert fdd0bbf277 SDK sync.
2012-07-06 20:35:59 -05:00

7 lines
110 B
Perl

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