Skip to content

Instantly share code, notes, and snippets.

@ryanoboril
Last active August 25, 2018 23:14
Show Gist options
  • Save ryanoboril/bdce1eaa873e8bf8ca01 to your computer and use it in GitHub Desktop.
Save ryanoboril/bdce1eaa873e8bf8ca01 to your computer and use it in GitHub Desktop.
Global search and replace at the command line
find /path/to/files -type f -exec sed -i '' 's/oldstring/new string/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment