mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
8dda6a9241
Created cheatsheets package to store the default sheets.
8 lines
286 B
Text
8 lines
286 B
Text
To dump a database to a file:
|
|
mysqldump -uusername -ppassword the-database > db.sql
|
|
|
|
To dump a database to a .tgz file:
|
|
mysqldump -uusername -ppassword the-database | gzip -9 > db.sql
|
|
|
|
To dump all databases to a file:
|
|
mysqldump -uusername -ppassword --all-databases > all-databases.sql
|