common/tools/sortUnique.pl
author Simon Howkins <simonh@symbian.org>
Thu, 17 Sep 2009 12:11:47 +0100
changeset 461 874d24067366
parent 246 4f2482f1dd48
child 1284 0b4a09013baf
permissions -rw-r--r--
Fixed the initial population of the epoc32 tree with rnd bins to deal with the fact that the zips are in a slightly different location. (cf the changes made for Bug 350) Simplified the way in which the setting of sf.spec.package.src.enable is handled - no need to use it to change the zipping template, just use it to control which parts of the template we invoke.

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