Last active
August 29, 2015 14:15
-
-
Save keeganbrown/9bb5ddb3b7bc2cd3140c to your computer and use it in GitHub Desktop.
VVV Add themes
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
#!/bin/bash | |
for filename in /vagrant_www/wp-content/themes/*; do | |
echo $(basename "$filename"); | |
rm /srv/www/wordpress-default/wp-content/themes/$(basename "$filename") | |
ln -s /vagrant_www/wp-content/themes/$(basename "$filename") /srv/www/wordpress-default/wp-content/themes/$(basename "$filename") | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment