自动预期脚本.exp

自动预期脚本.exp

我使用autoexpect生成了一个script.exp。见下文。

如何理解

Expect -exact " \r 输入 ha 以获取有关别名的帮助\r \r ]0;luoric@linux-pc-64:/home/luoric/tmp[01;34mluoric@linux-pc-64[01;34m tmp \$ [00米”?

在我运行 script.exp 之后。我正确地得到了“ls”和“ls -l”结果。并获取命令行提示符。但当我按回车键时。没有命令行提示。我必须使用 ctrl C, 退出,以便我可以继续从终端输入命令。

我缺少什么?

#!/usr/bin/expect -f
#
# This Expect script was generated by autoexpect on Tue Dec 18 09:42:08 2018
# Expect and autoexpect were both written by Don Libes, NIST.
#
# Note that autoexpect does not guarantee a working script.  It
# necessarily has to guess about certain things.  Two reasons a script
# might fail are:
#
# 1) timing - A surprising number of programs (rn, ksh, zsh, telnet,
# etc.) and devices discard or ignore keystrokes that arrive "too
# quickly" after prompts.  If you find your new script hanging up at
# one spot, try adding a short sleep just before the previous send.
# Setting "force_conservative" to 1 (see below) makes Expect do this
# automatically - pausing briefly before sending each character.  This
# pacifies every program I know of.  The -c flag makes the script do
# this in the first place.  The -C flag allows you to define a
# character to toggle this mode off and on.

set force_conservative 0  ;# set to 1 to force conservative mode even if
              ;# script wasn't run conservatively originally
if {$force_conservative} {
    set send_slow {1 .1}
    proc send {ignore arg} {
        sleep .1
        exp_send -s -- $arg
    }
}

#
# 2) differing output - Some programs produce different output each time
# they run.  The "date" command is an obvious example.  Another is
# ftp, if it produces throughput statistics at the end of a file
# transfer.  If this causes a problem, delete these patterns or replace
# them with wildcards.  An alternative is to use the -p flag (for
# "prompt") which makes Expect only look for the last line of output
# (i.e., the prompt).  The -P flag allows you to define a character to
# toggle this mode off and on.
#
# Read the man page for more info.
#
# -Don


set timeout -1
spawn $env(SHELL)
match_max 100000
expect -exact " \r
Type ha for help on aliases\r
 \r
\]0;luoric@linux-pc-64:/home/luoric/tmp\[01;34mluoric@linux-pc-64\[01;34m tmp \$\[00m "
send -- "ls\r"
expect -exact "ls\r
\[0m\[00;32manswerbot\[0m  \[00;32mexecmds.sh\[0m  \[00;32mexecmds.sh.exp\[0m  \[00;32mgdb.sh\[0m  \[00min\[0m  \[00mnohup.out\[0m  \[00;32mquestions\[0m  \[00;32mscript.exp\[0m  \[00mspawn\[0m  \[00;32mstb.sh\[0m  \[00;32mtarget.exp\[0m  \[00;32mtarget.sh\[0m  \[00;32mtel\[0m  \[00mtel.log\[0m  \[00;32mterm\[0m\r
\]0;luoric@linux-pc-64:/home/luoric/tmp\[01;34mluoric@linux-pc-64\[01;34m tmp \$\[00m "
send -- "ls -l\r"
expect -exact "ls -l\r
total 56\r
-rwxrwxr-x 1 luoric ccuser  256 Dec 10 14:26 \[0m\[00;32manswerbot\[0m\r
-rwxrwxr-x 1 luoric ccuser  264 Dec 13 17:07 \[00;32mexecmds.sh\[0m\r
-rwxrwxr-x 1 luoric ccuser  424 Dec 13 17:13 \[00;32mexecmds.sh.exp\[0m\r
-rwxrwxr-x 1 luoric ccuser  118 Dec 17 13:44 \[00;32mgdb.sh\[0m\r
-rw-rw-r-- 1 luoric ccuser    8 Dec 10 12:13 \[00min\[0m\r
-rw------- 1 luoric ccuser 6920 Dec 14 15:35 \[00mnohup.out\[0m\r
-rwxrwxr-x 1 luoric ccuser  160 Dec 10 14:30 \[00;32mquestions\[0m\r
-rwxrwxr-x 1 luoric ccuser    0 Dec 18 09:42 \[00;32mscript.exp\[0m\r
-rw-rw-r-- 1 luoric ccuser    0 Dec 13 12:56 \[00mspawn\[0m\r
-rwxrwxr-x 1 luoric ccuser  103 Dec 10 14:41 \[00;32mstb.sh\[0m\r
-rwxrwxr-x 1 luoric ccuser  463 Dec 17 14:57 \[00;32mtarget.exp\[0m\r
-rwxrwxr-x 1 luoric ccuser  140 Dec 17 13:50 \[00;32mtarget.sh\[0m\r
-rwxrwxr-x 1 luoric ccuser  864 Dec 17 11:46 \[00;32mtel\[0m\r
-rw-rw-r-- 1 luoric ccuser 1201 Dec 11 14:03 \[00mtel.log\[0m\r
-rwxrwxr-x 1 luoric ccuser  153 Dec 13 13:13 \[00;32mterm\[0m\r
\]0;luoric@linux-pc-64:/home/luoric/tmp\[01;34mluoric@linux-pc-64\[01;34m tmp \$\[00m "
send -- "exit\r"
expect eof

答案1

作为我的评论的(格式化)后续内容,这是该 autoexpect 脚本的实际内容:

#!/usr/bin/expect
set prompt "\$\[00m $"
spawn bash
expect -re $prompt
send -- "ls\r"
expect -re $prompt
send -- "ls -l\r"
send -- "exit\r"
expect eof

这就是我所说的删除 95% 的意思。


要真正回答您的问题,如果您想与生成的 shell 交互,请更改

expect eof

interact

这会停止脚本交互并让用户指挥。

相关内容