mirror of
https://bitbucket.org/theswgsource/client-tools-1.2.git
synced 2026-01-16 23:04:40 -05:00
8 lines
88 B
Perl
8 lines
88 B
Perl
#!/usr/bin/perl
|
|
|
|
while (<>)
|
|
{
|
|
print unless ($_ eq $lastline);
|
|
$lastline = $_;
|
|
}
|