How to update the words file on a linux system code example
Example: bash find and replace all files with specifc name with another file
find . -name "boom.txt" -exec cp ~/replace.txt {} \;
find . -name "boom.txt" -exec cp ~/replace.txt {} \;