Created
June 5, 2017 19:59
-
-
Save luisfc/5f4098bec0a2c78f48bb4bfc59a5a078 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From the man page: | |
--user=user_name, -u user_name | |
--password[=password], -p[password] | |
These work: | |
-uuser_name -ppassword | |
-u user_name -ppassword | |
This does not: | |
-u user_name -p password | |
These work: | |
--user user_name --password=password | |
--user=user_name --password=password | |
This does not: | |
--user user_name --password password | |
I see no reason why -u should accept an optional space prior to the argument and -p should not, nor why --user should allow a space instead of an equals, and --password should not. | |
original source: https://forums.mysql.com/read.php?10,229253 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment