Simple recursive search and replace with perl
Reading Time: < 1 minuteI recently needed to do a mass search and replace for some content on my website. I vaguely recalled doing this in the past with find, sed, and/or xargs so decided to ‘Google’. My memory was jogged when I found this example: find *.ext -type f -exec sed -i ‘s/OldText/NewText/’ {} \; and I was…
Read more
Recent Comments