Skip to content

Instantly share code, notes, and snippets.

@juanjosezg
Created November 8, 2019 17:30
Show Gist options
  • Save juanjosezg/871cd1dbde6581aa7917e6468fcb3cea to your computer and use it in GitHub Desktop.
Save juanjosezg/871cd1dbde6581aa7917e6468fcb3cea to your computer and use it in GitHub Desktop.
Download Latest Worpress Version
#!/bin/bash
#
# Download the latest Wordpress version
#
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