Help for this page

Select Code to Download


  1. or download this
    my $cfg;
    unless ($cfg = new Config::Simple($config_file)) {
            print "CRITICAL: $config_file is not a valid INI file!\n";
    }
    
  2. or download this
    my $cfg = new Config::Simple($config_file)
         or print "CRITICAL: $config_file is not a valid INI file!\n";