From 67c84366915223c6d342080aa7a7ade6ae9923dd Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Mon, 26 Aug 2013 19:32:38 -0400 Subject: [PATCH] Fixed a typo I introduced to the mysqldump cheatsheet. --- cheatsheets/mysqldump | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cheatsheets/mysqldump b/cheatsheets/mysqldump index b7718cc..f9f34a3 100644 --- a/cheatsheets/mysqldump +++ b/cheatsheets/mysqldump @@ -1,17 +1,17 @@ # To dump a database to a file (Note that your password will appear in your command history!): --mysqldump -uusername -ppassword the-database > db.sql +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!): --mysqldump -uusername -ppassword the-database | gzip -9 > db.sql +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!): --mysqldump -uusername -ppassword --all-databases > all-databases.sql +mysqldump -uusername -ppassword --all-databases > all-databases.sql # To dump all databases to a file: mysqldump -uusername -p --all-databases > all-databases.sql