Skip to content

Instantly share code, notes, and snippets.

@howtomakeaturn
Created June 14, 2015 12:00
Show Gist options
  • Save howtomakeaturn/23608d2925ad3e29809f to your computer and use it in GitHub Desktop.
Save howtomakeaturn/23608d2925ad3e29809f to your computer and use it in GitHub Desktop.
Script Install WordPress
#!/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