I've done a lot of research but no luck...
I want to have a config file with some default or generic values in it. Then have other config files INCLUDE that default config, and overwrite variables if needed.
example:
Default.cfg :
[${name}]
bin = /bin/1
tmp_dir = /tmp
tmp_file = /tmp/${name}_tmp_file
------------------------------
myProc.cfg :
name = Test_proc
[${name}]
bin = /bin/TEST
This way, myProc.cfg uses the same tmp_dir defined in the default.cfg but defines the "name" and redefines bin dir.
Well, this example is very simple but I have gizillion configs that share the same lines of cfg but differ a little and I'm trying to consolidate configs.
My app is in Perl and already using AppConfig.
Thank you in advance for any help.