- 论坛徽章:
- 0
|
原帖由 mousejsh 于 2008-2-20 22:16 发表 ![]()
1.txt
a4c3 141
a3s1 3
b4c3 111
s21a 5
b92x 3
a3s1 52
62ae 2
a4c3 1
7z5y 9
我想要得到下面这个结果。
2.txt
a3s1 3
a3s1 52
a4c3 1
a4c3 141
请问perl怎么写才能达到!谢谢!
- #!/usr/bin/perl
- #use strict;
- use warnings;
- my $text = shift;
- my %hash;
- open my $file,"<","$text" or die "Fail to open $text $!";
- while(<$file>){
- chomp;
- my ($key,$value) = split/\s+/;
- $hash{$key} .= "$value ";
- }
- foreach ( sort keys %hash){
- my @array = split /\s+/,$hash{$_};
- my $key = $_;
- next if (@array < 2);
- foreach (@array){
- print "$key $_\n";
- }
- }
复制代码
<lig@other-server:~/chinaunix>$ ./identical a
a3s1 3
a3s1 52
a4c3 141
a4c3 1 |
|