adb shell
这将打开设备的shell命令行界面,从而可以使用各种系统调用。
adb shell [system_call]
例如,要查看系统日期和时间,请使用以下命令:
adb shell date
#!/system/bin/sh current_time=$(date +"%T") echo "The current time is: $current_time"
将该脚本保存为.sh文件(例如,test.sh),并通过以下命令在设备上运行它:
adb shell sh /path/to/test.sh
这将在设备上打印当前时间。
注意:在使用系统调用之前,请确保您已经具有足够的权限。另外,请仔细查阅adb shell的文档以获取更多命令和系统调用的详细信息。