bash search all files replace string code example
Example 1: ubuntu command line replace word in files
sed -i 's/original/new/g' file.txt
Example 2: How to replace a string in multiple files in linux command line
cd /path/to/your/folder
sed -i 's/foo/bar/g' *