mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-31 01:15:48 -04:00
8 lines
88 B
Perl
Executable File
8 lines
88 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while (<>)
|
|
{
|
|
print unless ($_ eq $lastline);
|
|
$lastline = $_;
|
|
}
|