Help for this page

Select Code to Download


  1. or download this
        /^#/ and next;
        open ... or die ...;
        -d $_ ? handle_directory($_) : handle_file($_);
    
  2. or download this
        next if /^#/;
        die ... unless open ...;
        parse_file($_) for @files;