Help for this page

Select Code to Download


  1. or download this
        foreach (keys %fhs)
        {
    ...
            {
            print $fh "#endif\n";
            }
    
  2. or download this
    for my $file (keys %fhs) {
        # ...
        print $fh whatever
          if $file =~ /\.\.new$/;
    }
    
  3. or download this
    for (keys %fhs) {
        # ...
        print $fh whatever
          if /\.\.new$/;
    }