Created
March 8, 2012 11:02
-
-
Save SimonS/2000449 to your computer and use it in GitHub Desktop.
quick start wordpress script
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
DEST=$1 | |
WP='http://wordpress.org/latest.tar.gz' | |
wget $WP | |
tar zxvf latest.tar.gz | |
mv wordpress $DEST | |
rm latest.tar.gz | |
cd $DEST | |
svn co [SVN URL]/better_parent wp-content/themes/better_parent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment