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