Created
January 19, 2018 00:12
-
-
Save mbarcia/a87d3ab3247640b512fe2499dadd8e02 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
PROJECTS=(drupsible-apache \ | |
drupsible-composer \ | |
drupsible-deploy \ | |
drupsible-drush \ | |
drupsible-memcached \ | |
drupsible-mysql \ | |
ansible-newrelic \ | |
drupsible-varnish \ | |
drupsible-samba) | |
cd ~/git | |
for i in ${PROJECTS[@]}; do | |
cd ${i} | |
echo $i | |
cat meta/main.yml | grep "role" | |
cd .. | |
done | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment