common/tools/sortUnique.pl
author Simon Howkins <simonh@symbian.org>
Wed, 07 Oct 2009 11:06:27 +0100
changeset 647 4d2a89833fea
parent 246 4f2482f1dd48
child 1284 0b4a09013baf
permissions -rw-r--r--
Created a dedicated sf-log-to-brag target so it can take care of the commonality of the task, including the creation of the directory for XML output.

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