> grep -rl "old string" . | xargs sed -i 's/old string/new string/g'
find . -type f -name "*.md" -print0 | xargs -0 sed -i 's/foo/bar/g'