#!/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*