Remove cruft

This commit is contained in:
Eelco Dolstra
2016-04-26 17:31:54 +02:00
parent 454eefa63b
commit a133a74c89
38 changed files with 1 additions and 5519 deletions
-22
View File
@@ -1,22 +0,0 @@
#! /usr/bin/perl -w
use strict;
my %map;
open LIST1, "<$ARGV[0]" or die;
while (<LIST1>) {
/^(\S+)\s+(.*)$/;
$map{$1} = $2;
}
open LIST1, "<$ARGV[1]" or die;
while (<LIST1>) {
/^(\S+)\s+(.*)$/;
if (!defined $map{$1}) {
print STDERR "missing file: $2\n";
next;
}
print "$2\n";
print "$map{$1}\n";
}