Skip to content

Instantly share code, notes, and snippets.

@paulsheldrake
Last active October 24, 2017 18:25
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 paulsheldrake/a15db9479fc5fc88d8a3b3faaba6a950 to your computer and use it in GitHub Desktop.
Save paulsheldrake/a15db9479fc5fc88d8a3b3faaba6a950 to your computer and use it in GitHub Desktop.
Install WP-CLI
#!/bin/bash
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
php wp-cli.phar --info
chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
cd ~/
wget https://raw.githubusercontent.com/wp-cli/wp-cli/master/utils/wp-completion.bash
echo 'source /home/vagrant/wp-completion.bash' >> ~/.bash_profile
source ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment