Help for this page

Select Code to Download


  1. or download this
    open (CONF, ">$conffile");
    print CONF<<EOF
    ...
    EOF
    ;
    close CONF;
    
  2. or download this
    $config->define('option1', { DEFAULT => "default text" } );
    $config->define('option1', { DEFAULT => "other text" } );
    
  3. or download this
    open (CONF, ">$conffile");
    print CONF "option1 = ", $config->option1(), "\n";
    print CONF "option2 = ", $config->option2(), "\n";
    close CONF;
    
  4. or download this
    $config->option1('Specified through GUI');
    &CreateConfigFile;