Skip to content

Instantly share code, notes, and snippets.

@cmpscabral
Last active January 11, 2016 19:20
Show Gist options
  • Save cmpscabral/a4bf395d17015e100705 to your computer and use it in GitHub Desktop.
Save cmpscabral/a4bf395d17015e100705 to your computer and use it in GitHub Desktop.
mysql import from tar.gz
# tar.gz
tar -xzOf your_db_dump.sql.tar.gz | mysql -u USERNAME -pPASSWORD your_database
# sql.gz
pv mydump.sql.gz | gunzip | mysql -u root -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment