This article is an example of a shell pipeline for data processing.
It will show you how to replace in bulk a text in multiple file.
With grep, you can list the path of files containing a pattern
grep -rli 'old-text' *
where the options:
With sed, you can replace an old text to a new one
sed -i 's/old-text/new-text/g' /file/path
# i: in place, the file will be overwritten
grep -rli 'old-text' * | xargs -i@ sed -i 's/old-text/new-text/g' @