Skip to content

Instantly share code, notes, and snippets.

@ikawka
Created February 21, 2014 09:33
Show Gist options
  • Select an option

  • Save ikawka/9131351 to your computer and use it in GitHub Desktop.

Select an option

Save ikawka/9131351 to your computer and use it in GitHub Desktop.
Search and Replace a string in files
//replace string in files
grep -rlw 'old-word' * | xargs -i@ sed -i 's/old-word/new-word/g' @
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment