Find and replace inside files with sed and xargs

I cleaned up my life on the road polluted links by running

rg -l -0 'find' | xargs -0 -I % sed -i '' 's/find/replace/g' "%"

The breakdown is that

Helpful for Programming and Bash