Created
December 20, 2010 11:33
-
-
Save kirkegaard/748277 to your computer and use it in GitHub Desktop.
pipe a mysql dump through gzip and send it over ssh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysqldump -u MYSQL_USERNAME -p YOUR_DATABASE | gzip -c | ssh USERNAME@YOUR_TO_HOST 'cat > ~/dump.sql.gz' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can use that right now, since I am out of space on the server :-)