Last Updated: February 25, 2016
·
379
· mtthlm

Search and Replace Command Line

Ever need to search and replace some text across multiple files? Check out this nifty command line gem!

find . -type f -name '*.<ext>' -exec sed -i '' 's/<search>/<replace>/' {} +