Skip to content

Instantly share code, notes, and snippets.

@ishu3101
Created October 31, 2013 04:36
Show Gist options
  • Select an option

  • Save ishu3101/7244418 to your computer and use it in GitHub Desktop.

Select an option

Save ishu3101/7244418 to your computer and use it in GitHub Desktop.
Download the latest version of wordpress from the command line.
#!bin/bash -e
# Download the latest version of wordpress
wget http://wordpress.org/latest.tar.gz
# extract the downloaded file
tar xfz latest.tar.gz
# moves files out
mv wordpress/* .
# remove leftovers
rm latest.tar.gz && rm -rf wordpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment