From cca90c9ec65b64991f673739b94924e8553253e9 Mon Sep 17 00:00:00 2001 From: Stefan Strigler Date: Tue, 12 Apr 2016 10:56:43 +0200 Subject: [PATCH] Update README.md fix typo in mysqldump example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e479984..217b303 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ $ ./composer.phar global update camcima/php-mysql-diff PHP MySQL Diff works with database creations scripts created by `mysqldump`, which is part of the MySQL distribution. In order to generate a database creation script, use the following command: ``` -$ mysqlsump -h hostname -u username -p -d dbname > outputfile.sql +$ mysqldump -h hostname -u username -p -d dbname > outputfile.sql ``` This tool may not work with creation scripts generated by other means because it relies on finely tuned regular expressions that could not work if the file format is different.