Explicitly mark comment lines in builtin sheets.

This commit is contained in:
Lars Yencken
2013-08-22 11:34:11 +10:00
parent f89d887c21
commit 8245d3f4ec
24 changed files with 86 additions and 86 deletions

View File

@ -1,8 +1,8 @@
To dump a database to a file:
# To dump a database to a file:
mysqldump -uusername -ppassword the-database > db.sql
To dump a database to a .tgz file:
# To dump a database to a .tgz file:
mysqldump -uusername -ppassword the-database | gzip -9 > db.sql
To dump all databases to a file:
# To dump all databases to a file:
mysqldump -uusername -ppassword --all-databases > all-databases.sql