Perl Config::General setup and usage
Few libraries have been as useful to me over the years as Perl’s Config::General. It gives us a simple way to create configurable scripts with minimal code, in a syntax-light configuration file format. The configuration file format is similar to apache’s, and the module can parse native apache configuration files. How to start using it: use Config::General; […]