Config

Table of Contents

NAME
Synopsis
Description
Constructor and initialization
Sub (not Method): get_config()
Required Modules
Resources
Author
Copyright

Config

NAME

Local::Config - Read the local config file, .htlocal.conf

Synopsis

	#!/usr/bin/perl
	use strict;
	use warnings;
	use Local::Config;
	# ----------------
	my($config) = Local::Config::get_config();
	print map{"$_ => $$config{$_}. \n"} sort keys %$config;

Description

Local::Config is a pure Perl module.

Constructor and initialization

Local::Config does not have a constructor.

Sub (not Method): get_config()

Returns a copy of the config hash ref.

Required Modules

  • Config::General

Resources

http://savage.net.au/Perl-modules/html/local-module-overview.html

Author

Local::Config was written by Ron Savage in 2006.

Home page: http://savage.net.au/index.html

Copyright

Australian copyright © 2006, Ron Savage. All rights reserved.

	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
 
Top of page