Skip to content

Instantly share code, notes, and snippets.

@kimpepper
Created May 19, 2013 19:40
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 kimpepper/5608723 to your computer and use it in GitHub Desktop.
Save kimpepper/5608723 to your computer and use it in GitHub Desktop.
Wipe drupal 8 database and files directory in order to re-install
#! /bin/bash
cd /Users/kim/dev/drupal-core/drupal
sudo rm -rf sites/default/files
sudo rm -rf sites/default/settings.php
mysqladmin -uroot --force drop drupal_8
mysqladmin -uroot create drupal_8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment