| NAME |
| Synopsis |
| Description |
| Constructor and initialization |
| Author |
| Copyright |
Local::Config - Read the local config file,
.htlocal.config.conf
#!/usr/bin/env perl
use strict;
use warnings;
use Local::Config;
# ----------------
my($config) = Local::Config -> new -> config;
print map{"$_ => $$config{$_}. \n"} sort keys %$config;
Local::Config is a pure Perl module. It uses Moose.
Local::Config -> new -> config returns a hashref.
The contents of this hashref depend on the config file being read.
Local::Config was written by Ron Savage
in 2006.
Home page: http://savage.net.au/index.html
Australian copyright © 2006, Ron Savage. All Programs of mine are 'OSI Certified Open Source Software'; you can redistribute them and/or modify them under the terms of The Artistic License, a copy of which is available at: http://www.opensource.org/licenses/index.html