summaryrefslogtreecommitdiff
path: root/rampion/rampion_generate_input.pl
diff options
context:
space:
mode:
authorPatrick Simianer <simianer@cl.uni-heidelberg.de>2012-04-26 09:35:12 +0200
committerPatrick Simianer <simianer@cl.uni-heidelberg.de>2012-04-26 09:35:12 +0200
commit9572d31167162955a02276c1846ae4baefa7ee53 (patch)
tree9ab0f05a8efe598ca72141c72f87f91d66ec7eef /rampion/rampion_generate_input.pl
parent8271eb7cfc10e58b2b8ff50d27d6680dedfba043 (diff)
parentd80ea9772e7d23e47bf144df8e8d8032d305c09b (diff)
merge with upstream
Diffstat (limited to 'rampion/rampion_generate_input.pl')
-rwxr-xr-xrampion/rampion_generate_input.pl18
1 files changed, 18 insertions, 0 deletions
diff --git a/rampion/rampion_generate_input.pl b/rampion/rampion_generate_input.pl
new file mode 100755
index 00000000..b30fc4fd
--- /dev/null
+++ b/rampion/rampion_generate_input.pl
@@ -0,0 +1,18 @@
+#!/usr/bin/perl -w
+use strict;
+
+die "Usage: $0 HG_DIR\n" unless scalar @ARGV == 1;
+my $d = shift @ARGV;
+die "Can't find directory $d" unless -d $d;
+
+opendir(DIR, $d) or die "Can't read $d: $!";
+my @hgs = grep { /\.gz$/ } readdir(DIR);
+closedir DIR;
+
+for my $hg (@hgs) {
+ my $file = $hg;
+ my $id = $hg;
+ $id =~ s/(\.json)?\.gz//;
+ print "$d/$file $id\n";
+}
+