I use a shell script for this bulk replacement
on MacOS:
#!/bin/sh
ORIG='text_to_be_replaced'
REPL='new_text'
find . -name '*.md' | xargs -r sed -i '' "s/$ORIG/$REPL/g"
I use a shell script for this bulk replacement
on MacOS:
#!/bin/sh
ORIG='text_to_be_replaced'
REPL='new_text'
find . -name '*.md' | xargs -r sed -i '' "s/$ORIG/$REPL/g"