【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

 

作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/

posted @ 2012-10-13 21:41  gnuhpc  阅读(1061)  评论(0编辑  收藏  举报