rita-p
6/14/2014 - 5:45 PM

WordPress Install

#!/bin/bash

# Adds WordPress zipped up:
wget http://wordpress.org/latest.tar.gz

# Unzip WordPress:
tar xfz latest.tar.gz

# Move the contents of WordPress back a folder:
mv wordpress/* ./

# Remove the wordpress directory:
rmdir wordpress

# Remove the zip file:
rm -f latest.tar.gz

# Go to themes folder:
cd wp-content/themes/

# Remove twentyfourteen, twentythirteen, twentytwelve themes:
rm -rf twenty*