gpt4 book ai didi

linux - 如何通过 shell 脚本中的命令行在 Expect 中传递参数

转载 作者:IT老高 更新时间:2023-10-28 12:34:41 25 4
gpt4 key购买 nike

我通过 shell 脚本中的命令行在 Expect 中传递参数。

我试过了

#!/usr/bin/expect -f

set arg1 [lindex $argv 0]

spawn lockdis -p
expect "password:" {send "$arg1\r"}
expect "password:" {send "$arg1\r"}
expect "$ "

但它不起作用。我该如何解决?

最佳答案

如果你想从参数中读取,你可以简单地通过

set username [lindex $argv 0];
set password [lindex $argv 1];

然后打印出来

send_user "$username $password"

该脚本将打印

$ ./test.exp user1 pass1
user1 pass1

您可以使用 Debug模式

$ ./test.exp -d user1 pass1

关于linux - 如何通过 shell 脚本中的命令行在 Expect 中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17059682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com