Last active
April 3, 2018 07:20
-
-
Save robneu/8727430 to your computer and use it in GitHub Desktop.
How to Install WordPress via SSH - Installing WordPress via the command line is one of the fastest, easiest ways to get up and running on WordPress. Running this command will take literally 30 seconds. Assuming you've already created a database, all you have to do is run the WordPress install script and you're ready to start publishing!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- http://wordpress.org/latest.tar.gz | tar xz && cp -rpf wordpress/* . && rm -r wordpress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a bit shorter:
even shorter: http://wp-cli.org/commands/core/download/