mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
7 lines
104 B
Perl
Executable File
7 lines
104 B
Perl
Executable File
foreach $_ (sort <> )
|
|
{
|
|
next if( defined( $prevline ) && $_ eq $prevline );
|
|
$prevline = $_;
|
|
print;
|
|
}
|