Skip to content

Instantly share code, notes, and snippets.

@benauthor
Created March 16, 2017 20:56
Show Gist options
  • Save benauthor/378acafab5b5b780fd923ebea0c196a6 to your computer and use it in GitHub Desktop.
Save benauthor/378acafab5b5b780fd923ebea0c196a6 to your computer and use it in GitHub Desktop.
Dump a pretty mysql schema without all the noise
#!/bin/bash
mysqldump -d \
--skip-add-drop-table \
--skip-add-locks \
--skip-disable-keys \
--skip-set-charset $@ \
| grep -v SET | head -n -2 | tail -n +7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment