Archives
-
Recent Comments
Category Archives: Linux/UNIX
Find and Replace Across Multiple Files
Need to replace broken links across 1000 html files? If you’re using linux/unix/macosx it’s just fire up the terminal and use this: find -iname “*.htm” -exec sed -i ‘s/search/replace/’ {} \; search – is regex(or a string in the simplest … Continue reading