-
Notifications
You must be signed in to change notification settings - Fork 0
/
i_CENSUS.pl
36 lines (36 loc) · 1 KB
/
i_CENSUS.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/local/bin/perl
use strict; use warnings;
#####################################################
# CENSUS - locations of files
# each disk node lists one file per line
# example: vu2_LIST -> aa12...\naa2b..
#####################################################
my ($dir) = @ARGV;
die "ARG1 dir\n" unless (defined $dir);
$dir =~%/\z%%;
#####################################################
my %LIST;
my @list;
#####################################################
@list = glob("$dir/*_LIST");
shift @list; shift @list;
#####################################################
for (@list)
{
my $ifile = $_;
open(my $ifh, '<', $ifile);
my @i = readline $ifh;
close $ifh; chomp @i;
#####################################################
my $node = $ifile;
$node =~ s/_LIST//;
$node =~ s%.*/%%;
#####################################################
for (@i)
{
my $iline = $_;
$LIST{$iline} .= " $node";
}
}
#####################################################
print "$_$LIST{$_}\n" for (keys %LIST);