Hello all,
I stumbled upon a command line for multiple search and replace within given destination
I want to replace the following line where the date is the variable, from
with date tags, like so
Is there at all a solution to this? Please forgive my ignorance - this is all very new to me.
Any help and guidance is much appreciated.
I stumbled upon a command line for multiple search and replace within given destination
Code:
perl -pi -w -e 's/SEARCH_FOR/REPLACE_WITH/g;' *.html
Code:
<div class="meta">
<ul>
<li>05.05.2015
Code:
<div class="meta">
<ul>
<li><date>05.05.2015</date>
Any help and guidance is much appreciated.