Greetings,
Hey guys, I am trying to make a shell script that will scan for a certain 5 lines of text in a file, modify it by adding two lines in the middle and replacing that section of text in the file.
For example read rc.conf for:
Line1
Line2
Line3
Line4
Line5
That match the exact lines
and replace that section or match with
Line1
Line2
INSERTLINE
Line3
INSERTLINE
Line4
Line5
Mainly i am trying to add a new case statment inside an if loop automatically using a shell script. I have tried reading info on awk usage but cannot find anything that matches whta I am trying to accomplish. Any help would be greatly appreciated.
Regards,
S Tompkins