Skip to content

Instantly share code, notes, and snippets.

@thedarsideofit
Created April 16, 2018 12:14
Show Gist options
  • Save thedarsideofit/73ee80c0e9c06d7a9af08a80a0b8e064 to your computer and use it in GitHub Desktop.
Save thedarsideofit/73ee80c0e9c06d7a9af08a80a0b8e064 to your computer and use it in GitHub Desktop.
export-import-gzip.sh
#https://fuubar.wordpress.com/2015/03/26/importarexportar-base-de-datos-mysql-con-gzip/
mysqldump -u user -p database | gzip > database.sql.gz
gunzip < database.sql.gz | mysql -u user -p database
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment