Find configuration files in the native OS fashion
Version: 0.26Config::Find is a Perl module to find configuration files in the native OS fashion.
License: Perl Artistic License
Operating System: Linux
Homepage: search.cpan.org
Developed by:
SYNOPSIS
use Config::Find;
my $filename=Config::Find->find;
...
my $fn_foo=Config::Find->find( name => 'my_app/foo',
mode => 'write',
scope => 'user' );
my $fn_bar=Config::Find->find( names => [qw(my_app/bar appbar)] );
my $fh=Config::Find->open( name => 'foo',
scope => 'global',
mode => 'w' )
my $fn=Config::Find->install( 'original/config/file.conf',
name => 'foo' );
my $fn=Config::Find->find( file => $opt_c,
name => foo );