| 123456789101112131415161718192021222324 | #!/bin/bashdrush --always-set vset devel_old_smtp_library "foo/bar"; drush --always-set vset smtp_library "foo/bar"; drush vget smtp_libraryecho -e "\n\t\tUninstall with variables set to 'foo/bar':\n"echo y | drush dis maillogecho y | drush pm-uninstall maillogecho -e "\n\t\t Show variables:\n"drush vget smtp_libraryecho y | drush en maillogecho -e "\n\t\t Show variables after installation:\n"drush vget smtp_librarydrush --always-set vset devel_old_smtp_library "sites/all/modules/maillog/includes/maillog.inc"; drush vget smtp_libraryecho -e "\n\t\tUninstall with variables set to 'sites/all/modules/maillog/includes/maillog.inc:\n"echo y | drush dis maillogecho y | drush pm-uninstall maillogecho -e "\n\t\t Show variables:\n"drush vget smtp_libraryecho y | drush en maillogecho -e "\n\t\t Show variables after installation:\n"drush vget smtp_library
 |