TL;DR
On Linux:
| |
On Mac:
| |
I needed to change a string in a bunch of files and I used the command above using git grep to do it. Worked like a charm.
The -l argument to git grep only returns the file names and not the location in the file like it usually does.
The -e argument is needed with the sed portion on OSX as stated by asmeurer in the comments