Skip to content

Instantly share code, notes, and snippets.

@verkholantsev
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save verkholantsev/9c5ab2f21932fae8e633 to your computer and use it in GitHub Desktop.
Save verkholantsev/9c5ab2f21932fae8e633 to your computer and use it in GitHub Desktop.
Bulk rename
grep -r -l 'old' ./dir | xargs sed -i.bak "s/old/new/g"
# Replace any `a-site-categorie` not followed by `s`
sed -i.orig '/a-site-categorie[^s]/s/a-site-categorie/a-site-category/' a-site-categories.bemhtml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment