Skip to content

Instantly share code, notes, and snippets.

@adambutler
Last active August 29, 2015 14:01
Show Gist options
  • Save adambutler/834b0e81110439199903 to your computer and use it in GitHub Desktop.
Save adambutler/834b0e81110439199903 to your computer and use it in GitHub Desktop.
Install Wordpress with the command line
#!/bin/sh
wget http://wordpress.org/latest.tar.gz
tar xfz latest.tar.gz
rsync -r --ignore-existing ./wordpress/ ./
rm -R ./wordpress ./latest.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment