4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-19 07:22:14 +08:00
Christopher Faylor 03ac0afe48 * sortdin: New program.
* cygwin.din: Sort.
2006-07-05 15:59:39 +00:00

36 lines
570 B
Perl
Executable File

#!/usr/bin/perl
my %data = ();
my %code = ();
my @out = ();
my $fn = $ARGV[0];
while (<>) {
push(@out, $_);
/^\s*exports/i and last;
}
while (<>) {
my $key;
$arr = /\sDATA\s*$/o ? \%data : \%code;
$_ =~ s/^\s+//;
my $key = (split(' ', $_))[0];
substr($key, 0, 1) = '' if /^_/o;
chomp $key;
$arr->{$key}->{$_} = 1;
}
for my $k (sort keys %data) {
push(@out, sort {$b cmp $a} keys %{$data{$k}});
}
for my $k (sort keys %code) {
push(@out, sort {$b cmp $a} keys %{$code{$k}});
}
open(R, '>', $fn);
print R @out;
close R;