Skip to content

Instantly share code, notes, and snippets.

@1bigidea
Created March 12, 2013 02:04
Show Gist options
  • Save 1bigidea/5139700 to your computer and use it in GitHub Desktop.
Save 1bigidea/5139700 to your computer and use it in GitHub Desktop.
Alfred 2.0 Workflow - Bash script to install WordPress
FOLDER=$"{query}";
cd "$FOLDER";
curl -O http://wordpress.org/latest.zip .;
tar -xf latest.zip;
mv wordpress/* .;
rmdir wordpress;
rm latest.zip;
open .;
echo "Wordpress Install Completed";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment