common/tools/sortUnique.pl
author royt <tathagatar@symbian.org>
Fri, 14 Aug 2009 11:06:38 +0100
changeset 348 2f60611cdea9
parent 231 4f2482f1dd48
permissions -rw-r--r--
change made in smoketest.xml

#!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;