Created
August 31, 2013 13:22
-
-
Save light9/6398140 to your computer and use it in GitHub Desktop.
Drupal 7 Uninstall unuserd modules (which not exist)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for FN in `drush --extra=--skip-column-names sql-query "SELECT filename FROM system WHERE status = 1"`; do [ ! -f $FN ] && echo "Missing $FN"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment