Skip to content

Instantly share code, notes, and snippets.

View Jacob-McKay's full-sized avatar

Jacob McKay Jacob-McKay

  • Moobware
  • Milwaukee, WI
View GitHub Profile
@danbucholtz
danbucholtz / gist:901f88b081783dd1f001
Created May 14, 2015 21:12
Recursive find and replace of a path using Sed on a Mac
find . -type f -name '*.js' -print0 | xargs -0 sed -i -e 's|path/to/replace|new/path/of/doom|g'