Skip to content

Instantly share code, notes, and snippets.

@lcfd
Created June 16, 2016 09:04
Show Gist options
  • Save lcfd/f753f88b584f1555760ba7947cba6696 to your computer and use it in GitHub Desktop.
Save lcfd/f753f88b584f1555760ba7947cba6696 to your computer and use it in GitHub Desktop.
Install latest wordpress with bash
#!/bin/bash
wget http://wordpress.org/latest.tar.gz
tar xfz latest.tar.gz
mv wordpress/* ./
rmdir ./wordpress/
rm -f latest.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment