Search and replace text in multiple files. 1

I had a bunch of html files where a particular style sheet inclusion had to be removed from about 500 odd html files. Knew this could be done through an sed script , but found a better one using perl from here. export OLD_TEXT='<link rel=”stylesheet” type=”text/css” href=”style.css”>’ export NEW_TEXT=’some new text’ and use it in ...