Files
sunnypilot/tools/adb_shell.sh
Mauricio Alvarez Leon d15d77f7bb op.sh: adb (#34468)
* add op adb

* adb_shell.sh

* su comma

* add to op output
2025-02-22 11:24:03 -08:00

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