- 论坛徽章:
- 6
|
本帖最后由 只是一个红薯 于 2013-07-25 16:09 编辑
 - #!/usr/bin/perl
- use 5.016;
- use strict;
- use warnings;
- use Tie::File;
- tie my @a,'Tie::File', '1.txt';
- tie my @b,'Tie::File', '2.txt';
- tie my @c,'Tie::File', '3.txt';
- my %hash;
- my @tmp=@a;
- for my $bb(@b){
- next unless $bb=~/\d/;
- my($adr,$ip)=split /\s+/,$bb;
- duu($ip);
- for my $aa(@a){
- if(duu($ip) eq duu($aa)){
- @tmp = grep { $_ ne $aa } @tmp;
- $hash{$aa}=$adr ;
- }
- }
- }
- $hash{$_}='' for (@tmp);
- sub duu{
- my $t=shift;
- my($a,$b,$c,$d)=split /\./,$t;
- ($a,$b,$c);
- }
- push @c,$hash{$_}."\t".$_ for keys %hash;
- @c=reverse sort @c;
- untie @a;
- untie @b;
- untie @c;
复制代码 |
|