Mac OSX下 iTerm2+expect 实现服务器ssh自

2016-11-25  本文已影响0人  AAorange

使用情景

第一步(下载使用工具)

iTerm2

自动化运维 Expect

编写自动化脚本


#!/usr/bin/expect -f
set user {user}
set password {password}
set host {host}
set timeout -1

spawn ssh $user@$host
expect "*assword:*"
send "$password\r"
interact
expect eof

chmod 777 {filename}

使用iTerm2快捷连接SSH

上一篇下一篇

猜你喜欢

热点阅读