mirror of
https://bitbucket.org/swgmasters/swg-src.git
synced 2026-01-17 00:06:23 -05:00
8 lines
88 B
Perl
Executable File
8 lines
88 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while (<>)
|
|
{
|
|
print unless ($_ eq $lastline);
|
|
$lastline = $_;
|
|
}
|