Skip to content

Instantly share code, notes, and snippets.

@keeganbrown
Last active August 29, 2015 14:15
Show Gist options
  • Save keeganbrown/9bb5ddb3b7bc2cd3140c to your computer and use it in GitHub Desktop.
Save keeganbrown/9bb5ddb3b7bc2cd3140c to your computer and use it in GitHub Desktop.
VVV Add themes
#!/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