Skip to content

Instantly share code, notes, and snippets.

@AtsushiA
Last active July 2, 2023 05:58
Show Gist options
  • Save AtsushiA/601095377f1b536fd7df1bf8f9e99189 to your computer and use it in GitHub Desktop.
Save AtsushiA/601095377f1b536fd7df1bf8f9e99189 to your computer and use it in GitHub Desktop.
setup WP-CLI on XSERVER
#/bin/bash
cd ~
mkdir bin && cd bin
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x wp-cli.phar
cd ~
echo '' >> ~/.bashrc
echo 'alias wp="/opt/php-8.1/bin/php ~/bin/wp-cli.phar"' >> ~/.bashrc
source ~/.bashrc
wp --info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment