Find and Replace multiple Unix/Linux Files
Need to do some substitution on multiple files? Try this command:
find ./ -type f -exec sed -i ’s/findme/replacewithme/’ {} \;
Need to do some substitution on multiple files? Try this command:
find ./ -type f -exec sed -i ’s/findme/replacewithme/’ {} \;