in reply to Cfg
and you call getCfg('e') then it returns (in order of preference):a=b c=d
and if none of those are defined it looks for a unique environment variable whose name ends in 'e' (if there's more than one, then it's an error).$ENV{e} $ENV{CFG_e} $ENV{CFG_a_b_e} $ENV{CFG_a_b_c_d_e} $ENV{CFG_c_d_e} $ENV{CFG_c_d_a_b_e}
I can't imagine how you could end up with all these oddly named environment variables. Google doesn't help much. Maybe some kind of i18n/l10n settings?
|
|---|