From 2166a57ccdd13c3ed58877cc65940e8b487aa94a Mon Sep 17 00:00:00 2001 From: raizo62 Date: Thu, 4 Jun 2015 17:53:48 +0000 Subject: [PATCH] remove useless blank --- cheat/cheatsheets/mysqldump | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cheat/cheatsheets/mysqldump b/cheat/cheatsheets/mysqldump index f9f34a3..61c809c 100644 --- a/cheat/cheatsheets/mysqldump +++ b/cheat/cheatsheets/mysqldump @@ -1,16 +1,16 @@ - # To dump a database to a file (Note that your password will appear in your command history!): +# To dump a database to a file (Note that your password will appear in your command history!): mysqldump -uusername -ppassword the-database > db.sql # To dump a database to a file: mysqldump -uusername -p the-database > db.sql - # To dump a database to a .tgz file (Note that your password will appear in your command history!): +# To dump a database to a .tgz file (Note that your password will appear in your command history!): mysqldump -uusername -ppassword the-database | gzip -9 > db.sql # To dump a database to a .tgz file: mysqldump -uusername -p the-database | gzip -9 > db.sql - # To dump all databases to a file (Note that your password will appear in your command history!): +# To dump all databases to a file (Note that your password will appear in your command history!): mysqldump -uusername -ppassword --all-databases > all-databases.sql # To dump all databases to a file: