I am using the following Perl oneliner in a bash script to capture multiline text between pre tags and add a second iteration of the tag contents wrapped in a different starting and ending string:
new_start_string="NEWSTART"
new_end_string="NEWEND"
perl -i -pe "BEGIN{undef $/;} s/<pre>(.*?)<\/pre>/<pre>\$1<\/pre>${new_start_string}\$1${new_end_string}/smg" /path/to/file
It works perfectly for the task as specified. I'm aware I'm parsing HTML with regex and that's not ideal, however the formatting of this text file is a known factor, very simple, under local control and done by local specification so it is a rare case in which parsing would be overkill and I've chosen not to do this via parsing.
Using the same oneliner, how can I URL encode the second iteration of the capture value $1 variable? If it's impossible, is there another approach to get this result that is also relatively simple and readable?
/emodifier and place any code you like in the replace part. – Qtax Aug 30 '12 at 12:25