自動的に予想されるscript.exp

自動的に予想されるscript.exp

autoexpectを使用してscript.expを生成しました。下記をご覧ください。

理解する方法

-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」の結果が正しく表示されます。コマンドラインプロンプトが表示されます。しかし、Enterを押すと。コマンドラインプロンプトはありません。端末でコマンドを入力し続けるには、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

私のコメントに対する(フォーマットされた)フォローアップとして、以下は自動期待スクリプトの実際の内容です。

#!/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%を削除するという意味です。


実際に質問に答えるには、生成されたシェルと対話するには、次の変更を行います。

expect eof

到着

interact

これにより、スクリプトのやり取りが停止し、ユーザーがコマンドを発行できるようになります。

おすすめ記事