迅为R3588S开发板ADB使用手册-运行shell
输入 adb shell 命令进入设备 shell 终端,如下图所示:
可执行 exit 退出 shell。如果连接了多台设备,那么可以使用-s 选项来指定运行哪一台设备
的 shell(如果只连接了一个设备,那么不需要加-s 选项,默认就是该设备
我们也可以通过以下命令来让设备执行一个 shell 命令:
adb shell command
Command 表示需要让设备执行的命令,比如以下命令
adb shell ls
adb shell ifconfig
adb shell pwd