- MacOS Iterm2连接ssh服务
#!/usr/bin/expect -f
set port 21
set user root
set host 172.16.10.71
set password mima123456
set timeout -1
spawn ssh $user@$host
expect "*assword:*"
send "$password\r"
interact
expect eof
- 安装mysql
https://market.cloud.tencent.com/products/14811