Как передать командную строку пароля MySQL
mysql -u user -ppassword
password should not have any space with -p
Inexpensive Ibex
mysql -u user -ppassword
password should not have any space with -p
mysqladmin processlist -u root -pYOURPASSWORDHERE
No space between your password and the -p
mysql -u <user> -p -e 'select * from schema.table'