mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
13 lines
211 B
Plaintext
13 lines
211 B
Plaintext
#!/usr/bin/expect -f
|
|
#username must > 5 characters
|
|
|
|
set timeout 30
|
|
spawn /usr/bin/bt
|
|
expect "请输入命令编号"
|
|
send "6\r"
|
|
expect "请输入新的面板用户名"
|
|
send "administrator\r"
|
|
|
|
interact
|
|
expect eof
|