I need help to write some Perl code to replace some selected values in text files. Below is the sample of my text files. I want to replace the value of "end" to a new value in the date format YYYYMMDD, increase the key value by 1, and the rest should remain the same.
Source File:
server=host1
network=eth0
start=YYYYMMDD
end=YYYYMMDD
key=34
If I change the "end" value to yyyymmdd (new date) and "key" to +1. the output result should be:
server=host1
network=eth0
start=YYYYMMDD
end=yyyymmdd
key=35
Please suggest a solution for this.