Skip to content

Instantly share code, notes, and snippets.

@JoshuaEstes
Created February 8, 2012 21:03
Show Gist options
  • Save JoshuaEstes/1773858 to your computer and use it in GitHub Desktop.
Save JoshuaEstes/1773858 to your computer and use it in GitHub Desktop.
Takes a mysqldump output and converts some of the values and breaks up "(values),(values),(values);" into "(values),\n(values)\n(values);"
sed -ri 's/(\([^\)]+\),)/&\n/ig' dump.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment