- 论坛徽章:
- 95
|
回复 1# pqrs7a
Try this:
- #!/usr/bin/perl
- use warnings;
- use strict;
- use Data::Dumper;
- my %record;
- while (<DATA>) {
- chomp;
- my ($name, $srv, $ip, $date) = split /\s+/, $_, 4;
- $record{$ip} = $_ unless $record{$ip};
- }
- print Dumper(%record);
- __DATA__
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 222.186.62.21 Wed Feb 19 09:01 - 09:01 (00:00)
- root ssh:notty 119.103.163.12 Wed Feb 19 05:34 - 05:34 (00:00)
- root ssh:notty 119.103.163.31 Wed Feb 19 05:01 - 05:01 (00:00)
复制代码 |
|