blob: b30fc4fd60338ade4717630071a603e80027c449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
}
|