免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1821 | 回复: 6
打印 上一主题 下一主题

问个expect的小问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-01-24 19:50 |只看该作者 |倒序浏览
我在一个shell中要调用 expect的脚本文件
但是expect中用到的变量没法从shell中传入expect中

例如
=================================
in shell.sh file
...
parm=
./expect
...


in expect file

spawn  fsck  parm   //这个parm参数希望从shell.sh中得到
。。
=======================

论坛徽章:
0
2 [报告]
发表于 2005-01-24 21:21 |只看该作者

问个expect的小问题

应该把变量export就可以了吧?

论坛徽章:
0
3 [报告]
发表于 2005-01-24 21:51 |只看该作者

问个expect的小问题

#!/usr/local/bin/expect
set ip [lindex $argv 0]
set user [lindex $argv 1]
set passwd [lindex $argv 2]
#类推下去

spawn telnet $ip
expect "login: "
send "$user\r"
expect "assword: "


执行调用
$ expect_script 10.27.128.0 user passwd
send "$passwd\r"

论坛徽章:
0
4 [报告]
发表于 2005-01-25 20:54 |只看该作者

问个expect的小问题

原帖由 "陶深" 发表:
我在一个shell中要调用 expect的脚本文件
但是expect中用到的变量没法从shell中传入expect中

例如
=================================
in shell.sh file
...
parm=
./expect
...


in expect file

..........


其中的spawn 表示什么意思啊!
我在这个里面也遇到了啊!
楼上的能帮我看看吗》》
http://www.chinaunix.net/forum/viewtopic.php?p=3227027#3227027

谢谢了!

论坛徽章:
0
5 [报告]
发表于 2005-01-26 12:57 |只看该作者

问个expect的小问题

spawn 后面跟你要执行的命令 例如

spawn  rmdir  dirname

相当于命令指示符吧

论坛徽章:
0
6 [报告]
发表于 2005-01-29 15:26 |只看该作者

问个expect的小问题

#!/opt/sfw/bin/expect

set ip [lindex $argv 0]
set user [lindex $argv 1]
set passwd [lindex $argv 2]
set cmd [lindex $argv 3]

spawn telnet $ip
expect "login:"
sleep 1
send "$user\r"
expect "assword:"
sleep 2
send "$passwd\r"
expect eof
send "bash\r"
expect eof
send "mkdir ttttt\r"
expect eof

论坛徽章:
0
7 [报告]
发表于 2005-02-02 21:26 |只看该作者

问个expect的小问题

好贴,我也碰到了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP