in reply to Question concerning Perl module Config::IniFiles
use warnings; use strict; use Config::IniFiles; my $cfg = Config::IniFiles->new(-file => 'my.ini'); $cfg->newval('SECTION_KEY', 'PARAMETER_new', '<VALUE_NEW>'); $cfg->RewriteConfig();
I don't see anything about specifying the order of parameters. Why do you think order is important?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Question concerning Perl module Config::IniFiles
by Amphiaraus (Beadle) on Dec 08, 2014 at 17:19 UTC | |
by Anonymous Monk on Dec 08, 2014 at 18:15 UTC |