Skip to content

Instantly share code, notes, and snippets.

@jbonney
Created September 17, 2014 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jbonney/32a25f7ba0a266d3b3db to your computer and use it in GitHub Desktop.
Save jbonney/32a25f7ba0a266d3b3db to your computer and use it in GitHub Desktop.
user=...
pass=...
host=localhost # or remote if necessary
database=...
mysqldump -u${user} -p${pass} -h ${host} --add-drop-table --no-data ${database} | grep ^DROP | mysql -u${user} -p${pass} -h ${host} ${database}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment