Help for this page

Select Code to Download


  1. or download this
    open(CONF, '<conf-main.txt')
        or die "Can't open file: $!";
    ...
            $config{$setting} = $line;
        }
    }
    
  2. or download this
    use Data::Dumper;
    print Data::Dumper::Dumper \%config;
    
  3. or download this
    my $type_match = qr/#DO\s+$config{'type'}/i;
    foreach my $script_file ( @{ $config{'scripts'} } ) {
    ...
            }
        }
    }