I am 60 years old I am 60 years old My code prints only 1 occurence not the successive ones. How to do that ? #### #!/usr/bin/perl -w $fn=<>; open(FH, "$fn") || die("Can't open:$!"); while() { if($_ =~ /\w\s+\w+\s+\w+\s+\w+\s+\w+/) { print "$_"; } } close FH;