|< 1 2 >| | 11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
use Config::Tiny;
# Open the config
$Config = Config::Tiny->read( 'test.cfg' );
# Reading properties
my $rootproperty = $Config->{_}->{rootproperty};
my $one = $Config->{section}->{one};
my $Foo = $Config->{section}->{Foo};
# Save a config
$Config->write( 'test.cfg' );
$Config->write( 'test.cfg' );
|< 1 2 >| | 11 Einträge, 2 Seiten |