Skip to content

Instantly share code, notes, and snippets.

@robzlabz
Last active February 21, 2018 07:00
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 robzlabz/2603b975ad419e0a78e286715cd70f56 to your computer and use it in GitHub Desktop.
Save robzlabz/2603b975ad419e0a78e286715cd70f56 to your computer and use it in GitHub Desktop.
Install Wordpress
wget https://wordpress.org/latest.zip
unzip latest.zip
cd wordpress
mv * ../
cd ..
rm latest.zip
rmdir wordpress
read -p "Database Name : " dbname
read -p "Database User : " dbuser
read -p "Database Password : " dbpass
sed "s/database_name_here/$dbname/g" wp-config-sample.php > wp-config1.php
rm wp-config-sample.php
sed "s/username_here/$dbuser/g" wp-config1.php > wp-config2.php
rm wp-config1.php
sed "s/password_here/$dbpass/g" wp-config2.php > wp-config.php
rm wp-config2.php
chown -R admin:admin .
echo '=============='
echo 'Setup Complete'
echo '=============='
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment