首页 > 系统相关 >Linux中expect命令使用报错“invalid command name “Y“ while executing “Y“ invoked from within”

Linux中expect命令使用报错“invalid command name “Y“ while executing “Y“ invoked from within”

时间:2024-07-31 15:56:36浏览次数:12  
标签:spawn invoked name No sh 报错 expect agree

1.执行expect命令的时候一直在报错:

spawn sh setup.sh # invalid command name "Y"     while executing "Y"     invoked from within "expect "[Y] Yes, I agree.  [N] No, I don't agree."",如下图所示:

其中的源码:

        /usr/bin/expect <<-EOF  
        #exp_internal 1  # 开启调试信息
        set timeout 1
        spawn sh "$WORK_DIR/$unzip_dir/setup.sh"
        
        expect "[Y] Yes, I agree.  [N] No, I don't agree.\n"
        send "Y\r\n"

解决方案:在[Y]中添加转义字符,修改后的源码如下图所示:

        /usr/bin/expect <<-EOF  
        #exp_internal 1  # 开启调试信息
        set timeout 1
        spawn sh "$WORK_DIR/$unzip_dir/setup.sh"
        
        expect "\[Y\] Yes, I agree.  \[N\] No, I don't agree.\n"
        send "Y\r\n"

执行后就不再报错,解决

标签:spawn,invoked,name,No,sh,报错,expect,agree
From: https://blog.csdn.net/qq_43861459/article/details/140825020

相关文章