nysus has asked for the wisdom of the Perl Monks concerning the following question:
I want to make it easier to modify configuration files. For example, let's day I want to edit a postfix config file according to the directions here.
So I started writing simple code in a file that could be interpreted by perl to make the changes for me with one command per line:
uc mail_owner # "uc" is the command for "uncomment" uc hostname cv hostname {{fqdn}} # "cv" is the command for "change value", {{fqdn} +} is replaced with appropriate value ...
You get the idea. I started writing some code to interpret my config file modification commands and then realized someone had to have tackled this problem before. I did a search on metacpan but came up empty. Anyone familiar with this problem space and can help point me in the right direction?
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate Priest Vicar";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl module for automating the modification of config files?
by Arunbear (Prior) on Oct 04, 2020 at 14:07 UTC | |
by LanX (Saint) on Oct 05, 2020 at 12:26 UTC | |
|
Re: Perl module for automating the modification of config files?
by LanX (Saint) on Oct 04, 2020 at 11:41 UTC | |
|
Re: Perl module for automating the modification of config files?
by likbez (Sexton) on Oct 05, 2020 at 03:16 UTC |