Update 'change web site name'

This commit is contained in:
fossilfranv 2023-04-06 11:57:47 -07:00
parent 6ee2118136
commit 9681081089

View File

@ -1,4 +1,7 @@
to change the website:
cd to root dir of repos
then
grep -rli 'old-word' * | xargs -i@ sed -i 's/old-word/new-word/g' @
grep -rli 'old-word' * | xargs -i@ sed -i 's/old-word/-new-word/g' @
or:
find . -type f -exec sed -i s/"old-word"/"new-word"/g {} +^C