Skip to content

Instantly share code, notes, and snippets.

@yusufhm
Last active November 23, 2015 03:40
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 yusufhm/899c1487476da27f5162 to your computer and use it in GitHub Desktop.
Save yusufhm/899c1487476da27f5162 to your computer and use it in GitHub Desktop.
Rename Drupal modules
#!/bin/sh
# Copied from http://whaaat.com/rename-drupal-module-cli
old=$1
new=$2
mv $old $new
cd $new
rename "s/$old/$new/g;" *
perl -pi -w -e "s/$old/$new/g;" *
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment