mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-21 19:02:06 +08:00
d15d77f7bb
* add op adb * adb_shell.sh * su comma * add to op output
9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/usr/bin/env expect
|
|
spawn adb shell
|
|
expect "#"
|
|
send "cd usr/comma\r"
|
|
send "export TERM=xterm-256color\r"
|
|
send "su comma\r"
|
|
send "clear\r"
|
|
interact
|