mirror of
https://github.com/swg-ostrich/ostrich.git
synced 2026-01-16 23:04:19 -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 = $_;
|
|
}
|