http://www.perlmonks.org?node_id=1151945


in reply to Update config file parameters

Welcome to the monastery!

First of all, you should look at perlbrew which allows you to easily use whatever version of Perl 5 you want.

Second, I would simply read the file line by line, split on the equal sign, change the value for that key as desired, and rewrite the pair to the file. You could either copy the original file to a temp file for the reads, or write to a temp file and rename it to the original name after closing it.