为下一个 perl 脚本寻找一个漂亮(短而优雅)的衬里:
use strict;
use warnings;
my %all;
while(<DATA>) {
chomp;
my ($name, $x, $path) = split /\s+/;
push @{$all{$path}}, $name;
}
foreach my $path (sort keys %all) {
my $cnt = scalar @{$all{$path}};
print "$path $cnt @{$all{$path}}\n" if $cnt > 1;
}
__DATA__
Atxt x a/b/c
Btxt x a/d/x
Ctxt x i/t/a
Dtxt x i/y/a
Etxt x i/t/a
Ftxt x a/d/x
Gtxt x a/d/x
ofc,单行应该从 STDIN 而不是从 DATA 读取。
简而言之,该脚本读取 3 个字段(name
、x
、path
),并应以以下形式输出重复路径的摘要:path dup_count name1 ... namex
. 每个name
都是不同的。
所以,寻找类似的东西:
my_command | perl -F '\s+' -nle 'shorter_variant_of_the_above_script'