首页 > 解决方案 > 期望不适用于非英语语言

问题描述

标签: shellcentosexpect

解决方案


做了一个简单的测试,它对我有用(用5.45、8.5.9、10.15Expect测试)。TclmacOS

[STEP 101] $ cat foo.sh
read -s -p 'Enter your パスワード: ' passwd
echo
echo "Your password is: $passwd"
[STEP 102] $ bash foo.sh
Enter your パスワード: foobar  <-- manual input
Your password is: foobar
[STEP 103] $
[STEP 104] $ cat foo.exp
spawn bash foo.sh
expect {
    "パスワード: $" {
        send "foobar\r"
    }
}
expect eof
[STEP 105] $ expect foo.exp
spawn bash foo.sh
Enter your パスワード:
Your password is: foobar
[STEP 106] $

我的语言环境信息:

[STEP 107] $ locale
LANG=""
LC_COLLATE="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
[STEP 108] $

expect -d

[STEP 109] $ expect -d foo.exp
expect version 5.45
argv[0] = expect  argv[1] = -d  argv[2] = foo.exp
set argc 0
set argv0 "foo.exp"
set argv ""
executing commands from command file foo.exp
spawn bash foo.sh
parent: waiting for sync byte
parent: telling child to go ahead
parent: now unsynchronized from child
spawn: returns {84009}

expect: does "" (spawn_id exp6) match glob pattern "\u30d1\u30b9\u30ef\u30fc\u30c9: $"? no
Enter your パスワード:
expect: does "Enter your \u30d1\u30b9\u30ef\u30fc\u30c9: " (spawn_id exp6) match glob pattern "\u30d1\u30b9\u30ef\u30fc\u30c9: $"? yes
expect: set expect_out(0,string) "\u30d1\u30b9\u30ef\u30fc\u30c9: "
expect: set expect_out(spawn_id) "exp6"
expect: set expect_out(buffer) "Enter your \u30d1\u30b9\u30ef\u30fc\u30c9: "
send: sending "foobar\r" to { exp6 }

Your password is: foobar
expect: read eof
expect: set expect_out(spawn_id) "exp6"
expect: set expect_out(buffer) "\r\nYour password is: foobar\r\n"
[STEP 110] $

推荐阅读