【Shell脚本】自动ssh登录重启Apache
作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/
#!/usr/bin/expect -f set timeout 30 spawn ssh -l root 192.168.191.244 expect "password:" send "passw0rd/r" send "cd /var/bin/r" send "./apachectl stop/r" send "sleep 1/r" send "./apachectl start/r" interact