- 求职 : 软件工程师
- 论坛徽章:
- 3
|
- #!perl
- use 5.010;
- my $text = join "", <DATA>;
- $text =~ s/(lease\s+[\d+\.]+\s+\{.*?\})/match_mac($1)/xmsge;
- say $text;
- sub match_mac {
- my $match_text = shift;
- if ($match_text =~ /20:dc:e6:3c:7f:4b/) {
- return "";
- }
- else { return $match_text }
- }
- __DATA__
- lease 10.108.215.134 {
- starts 2 2014/05/20 13:46:14;
- ends 3 2014/05/21 13:46:14;
- cltt 2 2014/05/20 13:46:14;
- binding state active;
- next binding state free;
- rewind binding state free;
- hardware ethernet 6c:e8:73:ad:32:db;
- uid "\001l\350s\2552\333";
- option agent.remote-id 0:23:ed:22:69:a2;
- client-hostname "WR740N";
- }
- lease 10.108.215.140 {
- starts 2 2014/05/20 13:46:21;
- ends 3 2014/05/21 13:46:21;
- cltt 2 2014/05/20 13:46:21;
- binding state active;
- next binding state free;
- rewind binding state free;
- hardware ethernet 20:dc:e6:3c:7f:4b;
- uid "\001 \334\346<\177K";
- option agent.remote-id a4:7a:a4:73:6e:1e;
- client-hostname "WR740N";
- }
- lease 10.108.215.148 {
- starts 2 2014/05/20 15:12:33;
- ends 3 2014/05/21 15:12:33;
- cltt 2 2014/05/20 15:12:33;
- binding state active;
- next binding state free;
- rewind binding state free;
- hardware ethernet 40:16:9f:7c:74:e7;
- uid "\001@\026\237|t\347";
- option agent.remote-id 0:25:f1:fd:90:7a;
- client-hostname "NatRouter";
- }
复制代码 |
|