免费注册 查看新帖 |

Chinaunix

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

[其他] expect接受键盘输入的脚本问题 [复制链接]

论坛徽章:
1
程序设计版块每日发帖之星
日期:2016-05-04 06:20:00
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-06-09 11:43 |只看该作者 |倒序浏览
脚本如下:

#!/usr/bin/expect
spawn command
expect "number1"
send "-20\r"
expect "number2"
send "20\r"
expect "number3"
send "20\r"
interact

问题:

因为command执行后,需要从键盘接收多个参数,每个参数输入后都要敲回车,所以不能用管道(至少我不会)。

然后我用expect,当屏幕显示“number1” 时,需要键盘输入一个数值。如果键盘输入的数值是正数,比如“20”,脚本正常运行,没问题。但是如果这个数值是复数,比如send "-20\r",这个是时候就会提示错误,错误提示内容如下:

": must be -i, -h, -s, -null, -0, -raw, -break, or --
    while executing
"send "-20\r""

求解答呀!

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
2 [报告]
发表于 2015-06-09 12:22 |只看该作者
本帖最后由 jason680 于 2015-06-09 12:23 编辑

回复 1# vcuteym

send "-20\r"

change to

send -- "-20\r"
   

http://www.tcl.tk/man/expect5.31/expect.1.html
...
send
[-flags] string
Sends string to the current process.For example, the command
    send "hello world\r"
...
The -- flag forces the next argument to be interpreted as a string rather than a flag. Any string can be preceded by "--" whether or not it actually lookslike a flag.  This provides a reliable mechanism to specify variable stringswithout being tripped up by those that accidentally look like flags.(All strings starting with "-" are reserved for future options.)

论坛徽章:
1
程序设计版块每日发帖之星
日期:2016-05-04 06:20:00
3 [报告]
发表于 2015-06-09 12:25 |只看该作者
回复 2# jason680


    真是高手中的高手呀!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP