Skip to content

Instantly share code, notes, and snippets.

@marcobiedermann
Last active June 3, 2016 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcobiedermann/5e3a1e6b62b48534f4b6c7cee382b06e to your computer and use it in GitHub Desktop.
Save marcobiedermann/5e3a1e6b62b48534f4b6c7cee382b06e to your computer and use it in GitHub Desktop.
WordPress Installation Setup
#!/usr/bin/env bash
# Download and extract WordPress
wget https://wordpress.org/latest.tar.gz
tar -xzf latest.tar.gz
rm -f latest.tar.gz
mv wordpress/* .
rm -rf wordpress
# Remove setup file
rm -f wordpress-setup.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment