Skip to content

Instantly share code, notes, and snippets.

@dossy
Last active June 25, 2018 15:46
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 dossy/13d826e273f53a74de45d505846701a8 to your computer and use it in GitHub Desktop.
Save dossy/13d826e273f53a74de45d505846701a8 to your computer and use it in GitHub Desktop.
split mysqldump with gawk
gawk 'BEGIN { F="_"; } match($0, /^-- (Table|Temporary table) structure for (table|view) `(.*)`/, m) { close(F ".sql"); F=m[3]; } { print $0 > F ".sql"; }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment