Created
February 4, 2015 20:08
-
-
Save beardedinbinary/265ae9f24ac09749a1f2 to your computer and use it in GitHub Desktop.
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 | |
#Download latest WordPress and uncompress | |
wget http://wordpress.org/latest.tar.gz | |
tar zxf latest.tar.gz | |
mv wordpress/* ./ | |
wget https://github.com/interconnectit/Search-Replace-DB/archive/master.zip | |
unzip Search-Replace-DB-master.zip | |
mv Search-Replacy-DB-master srdb | |
rm Search-Replace-DB-master.zip | |
# Tidy up | |
rmdir wordpress | |
rm latest.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment