Skip to content

Instantly share code, notes, and snippets.

@romiras
Created November 30, 2024 11:17
Show Gist options
  • Save romiras/48b5660c00980256bf96b6b47c0ac872 to your computer and use it in GitHub Desktop.
Save romiras/48b5660c00980256bf96b6b47c0ac872 to your computer and use it in GitHub Desktop.
Extract a single table from MySQL DB dump in Linux
gunzip < dump.sql.gz | sed -n -e '/DROP TABLE.*`my_table`/,/UNLOCK TABLES/p' > my_table.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment