Skip to content

Instantly share code, notes, and snippets.

@sayanriju
Created July 2, 2015 19:01
Show Gist options
  • Save sayanriju/ae41c48f4b1cdc08e09e to your computer and use it in GitHub Desktop.
Save sayanriju/ae41c48f4b1cdc08e09e to your computer and use it in GitHub Desktop.
Bulk Search & Replace recursively on Bash
## Source: http://stackoverflow.com/a/1585810/1823866
find /home/www/ -type f -exec \
sed -i 's/subdomainA\.example\.com/subdomainB.example.com/g' {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment