Last active
November 1, 2018 00:10
-
-
Save jkribeiro/f9826bfa38ad92aa1ed167b15161c553 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/bash | |
SUBS=" | |
<subA> | |
<subB> | |
" | |
ENVS=" | |
prod | |
" | |
# Iterate repos. | |
for sub in `echo ${SUBS}`; do | |
# Iterate envs. | |
for env in `echo ${ENVS}`; do | |
drush @"$sub"."$env" cr | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment