1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-10 10:59:39 +08:00
hl2sdk/devtools/bin/uniqifylist.pl

7 lines
110 B
Perl
Raw Normal View History

2012-07-06 20:35:59 -05:00
foreach $_ (sort <> )
{
next if( defined( $prevline ) && $_ eq $prevline );
$prevline = $_;
print;
}