How to execute mysql_cli model without prompt password
#1 Use a shell cript
```
#!/bin/sh
mysql -uUsername -pPassword
```
#2 Use $HOME/.my.cnf . If not exit, then create this file. Add the content to this file, `chmod 400 ./.my.cnf`
```
[client]
password=your_mysql_password
```