Created
October 13, 2015 03:31
-
-
Save tony4d/75d3246592dcbeb389a6 to your computer and use it in GitHub Desktop.
Revisions
-
tony4d created this gist
Oct 13, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #!/bin/bash # To avoid doing things like putting your mysql password on the cli which is not secure # Use mysql config editor http://dev.mysql.com/doc/refman/5.6/en/mysql-config-editor.html for table in $(mysql --login-path=mylogins -D database_name -Bse "show tables"); do mysql --login-path=mylogins -D database_name -Bse "analyze table $table"; done