Last active
January 30, 2019 18:03
-
-
Save juliobitencourt/63a64ce889cf81493cf38d1535604aa4 to your computer and use it in GitHub Desktop.
Install WordPress
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 | |
wget http://wordpress.org/latest.tar.gz | |
tar xfz latest.tar.gz | |
mv wordpress/* ./ | |
rmdir ./wordpress/ | |
rm -f latest.tar.gz | |
mkdir wp-content/languages | |
mv wp-config-sample.php wp-config.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running the script
wget -O - https://gist.githubusercontent.com/juliobitencourt/63a64ce889cf81493cf38d1535604aa4/raw/461dfd3962ee882a04bc436fd4043dd46e8cf05b/install_wordpress.sh | bash