码迷,mamicode.com
首页 > 其他好文 > 详细

小型自动化运维--expect脚本之传递函数

时间:2017-04-24 13:20:06      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:linux 自动化运维 expect   函数

小型自动化运维--expect脚本之传递函数



[root@shiyanji ~]# vim 3.expect


#!/usr/bin/expect

set user [lindex $argv 0]

set host [lindex $argv 1]

set passwd "wtf"

set cm [lindex $argv 2]

spawn ssh $user@$host

expect {

"yes/no" { send "yes\r"}

"password:" { send "$passwd\r" }

}

expect "]*"

send "$cm\r"

expect "]*"

send "exit\r"

expect eof


对文件3.expect授予执行权限

# chmod +x 3.expect


执行3.expect

# ./3.expect root 192.168.8.103 “cd /tmp;ls”,截图如下:

技术分享

# ./3.expect root 192.168.8.103 “w”,截图如下:

技术分享


注:

(1)shell 中的变量是 $0 $1,而 expect 里面的变量是 $argv 0,$argv 1。expect 脚本中的参数比 shell 中的复杂一些,而且是从数字 0 开始,[lindex #argv 0] 表示第一个参数,[lindex $argv 1] 表示第二个参数。

(2)结束符有 expect eof 和 interact,二者取一即可。


扩展:

可以设置把 passwd 作为一个参数,这样就不存在被别人窃取密码的情况。

set user [lindex $argv 0]

set host [lindex $argv 1]

set passwd [lindex $argv 3]

set cm [lindex $argv 2]

# ./3.expect root 192.168.8.103 “cd /tmp;ls” wtf,截图如下:

技术分享



本文出自 “圣骑士控魔之手” 博客,请务必保留此出处http://wutengfei.blog.51cto.com/10942117/1918763

小型自动化运维--expect脚本之传递函数

标签:linux 自动化运维 expect   函数

原文地址:http://wutengfei.blog.51cto.com/10942117/1918763

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!