mac 安装brew mac安装expect mac一键登录服务器脚本
Posted zhaohuanhuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac 安装brew mac安装expect mac一键登录服务器脚本相关的知识,希望对你有一定的参考价值。
mac 安装brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
mac安装expect(需要先安装brew,没有安装的话看上边)
brew install expect
mac一键登录服务器脚本
set user "zhaohh"
set host "123.126.105.34"
set password "haizhi1234!"
set timeout -1
spawn ssh [email protected]$host
expect "*assword:*"
send "$password\r"
interact
expect eof
以上是关于mac 安装brew mac安装expect mac一键登录服务器脚本的主要内容,如果未能解决你的问题,请参考以下文章