common/tools/sortUnique.pl
author royt <tathagatar@symbian.org>
Wed, 22 Jul 2009 16:58:46 +0100
changeset 272 849b8fb34bc1
parent 246 4f2482f1dd48
child 1284 0b4a09013baf
permissions -rw-r--r--
reverting the change

#!perl -w
use strict;
# Sorts the input, removes duplicates, and outputs it

# Read it
my @content = <>;

# Sort it, and grep to remove duplicates
my $previous = "\n\n";
@content = grep {$_ ne $previous && ($previous = $_, 1) } sort @content;

# Write it
print @content;