The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

SYNOPSIS

        use vars qw/%CONFIG/; 
        use Config::Sofu "config.sofu"; 
        if ($CONFIG{FOOBAR}) {
                ...
        }
        if ($CONFIG{Bar}->[7]->{Foo} eq "Foobar") {
                ...
        }
        

Save the new configuration:

        $CONFIG{FOOBAR}="Bar times Foo";
        Config::Sofu::save;
        

or

        Config::Sofu::save(%CompletlyNewConfig)

SYNTAX

This class exports the hash %CONFIG by default which contains all the information of the file which is given to the use statement.

FUNCTIONS AND METHODS

save

Save the new configuration of to the same file again

BUGS

The comments in the sofu-file will only be saved again if Data::Sofu >= 0.2.3 is installed.

SEE ALSO

Data::Sofu,perl(1),http://sofu.sf.net