mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 10:17:15 +08:00
13 lines
169 B
Plaintext
13 lines
169 B
Plaintext
#!/usr/bin/expect -f
|
|
#port must > 4 characters
|
|
|
|
set timeout 30
|
|
spawn /usr/bin/bt
|
|
expect "command number"
|
|
send "8\r"
|
|
expect "new port"
|
|
send "8888\r"
|
|
|
|
interact
|
|
expect eof
|