Skip to content

Instantly share code, notes, and snippets.

@emmanuelbarturen
Created April 4, 2018 21:20
Show Gist options
  • Save emmanuelbarturen/0d77e9136a23bc9a3681c7951ec42ac9 to your computer and use it in GitHub Desktop.
Save emmanuelbarturen/0d77e9136a23bc9a3681c7951ec42ac9 to your computer and use it in GitHub Desktop.
Clone database in ubuntu
$ mysqldump -u <user name> --password=<pwd> <original db> | mysql -u <user name> -p <new db>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment