Skip to content

Instantly share code, notes, and snippets.

@marcobiedermann
Last active November 3, 2017 12:55
Show Gist options
  • Save marcobiedermann/9f571e5f643fa86f1f365630286bf912 to your computer and use it in GitHub Desktop.
Save marcobiedermann/9f571e5f643fa86f1f365630286bf912 to your computer and use it in GitHub Desktop.
Drupal Installation Setup
#!/usr/bin/env bash
DRUPAL_VERSION="8.4.1"
# Install Drupal
wget http://ftp.drupal.org/files/projects/drupal-${DRUPAL_VERSION}.tar.gz
tar -xzf drupal-${DRUPAL_VERSION}.tar.gz
rm -f drupal-${DRUPAL_VERSION}.tar.gz
cd drupal-${DRUPAL_VERSION}
cp -rf . ..
cd ..
rm -rf drupal-${DRUPAL_VERSION}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment