Skip to content

Instantly share code, notes, and snippets.

@lemajes
Last active July 27, 2018 14:05
Show Gist options
  • Select an option

  • Save lemajes/759d0ef2a9b13293f80ed083b9feaa8e to your computer and use it in GitHub Desktop.

Select an option

Save lemajes/759d0ef2a9b13293f80ed083b9feaa8e to your computer and use it in GitHub Desktop.
[Wordpress Create Database] Create new Wordpress database #linux #script #bash #wordpress #database #create #new
#!/bin/bash
DBNAME=""
USER=""
PASS=""
CREATE DATABASE $DBNAME CHARACTER SET 'utf8';
GRANT ALL PRIVILEGES ON $DBNAME.* TO '$USER'@'localhost' IDENTIFIED BY '$PASS';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment