mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 18:30:23 +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
|