linux command find and replace text in multiple files code example
Example: How to replace a string in multiple files in linux command line
cd /path/to/your/folder
sed -i 's/foo/bar/g' *
cd /path/to/your/folder
sed -i 's/foo/bar/g' *