Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    
    close($outfh) if $outfh;
    close($infh);
    
  2. or download this
        if ( $line =~ /^zone\s+(\w+)\W+\w+\s*$/ ) {
            ...
    ...
            close $outfh;
            $outfh = undef;
        }