Created
June 14, 2015 12:00
-
-
Save howtomakeaturn/23608d2925ad3e29809f to your computer and use it in GitHub Desktop.
Script 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 | |
clear | |
echo "============================================" | |
echo "WordPress Install Script" | |
echo "============================================" | |
echo "Wordpress Folder Name: " | |
read -e folder_name | |
echo "============================================" | |
echo "A robot is now installing WordPress for you." | |
echo "============================================" | |
#download wordpress | |
curl -O https://wordpress.org/latest.tar.gz | |
#unzip wordpress | |
tar -zxvf latest.tar.gz | |
mv wordpress $folder_name | |
rm latest.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment