mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
11 lines
172 B
Plaintext
11 lines
172 B
Plaintext
#!/usr/bin/expect -f
|
|
set timeout 30
|
|
spawn /usr/bin/bt
|
|
expect "请输入命令编号"
|
|
send "5\r"
|
|
expect "请输入新的面板密码"
|
|
send "admin123\r"
|
|
|
|
interact
|
|
expect eof
|