common/tools/sortUnique.pl
author Dario Sestito <darios@symbian.org>
Wed, 19 Aug 2009 16:13:04 +0100
changeset 368 cb0ec85c881d
parent 231 4f2482f1dd48
permissions -rw-r--r--
Set Raptor -j option to 2 for package builds

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