#!/usr/bin/perl -wuse strict;die "perl $0 a.txt\n" unless(@ARGV == 1);open IN,$ARGV[0];my $flag = 0;while(){ chomp; $flag = 1 if($_=~/^host\{/); print "$_\n" if($flag == 1); $flag = 0 if($_=~/\}/);} 上面的代码应该就可以实现你所需要的功能了,你先试试,有问题追问就可以了