监听CPU和内存占用率脚本

监听cpu占用率和内存使用率,监听GPU占用率。
内存占用率打印保存在文件cpumem中
CPU占用率打印保存在文件cputop中
GOU占用率打印保存在文件gputop中

set PATH=%cd%;%PATH%;
@echo off
adb root
::adb remount

set startstr = "**********************"
set endstr   = "**********************"
set date = "datetime:"


:start
echo %startstr% >> cpumem
adb shell date >> cpumem
echo %endstr% >> cpumem
adb shell memcheck -mzscp >> cpumem

echo %startstr% >> cputop
adb shell date >> cputop
echo %endstr% >> cputop
adb shell top -n 1 >> cputop

echo %startstr% >> gputop
adb shell date >> gputop
echo %endstr% >> gputop
adb shell gpu-top -f -b >> guptop

::间隔1s
choice /t 10 /d y /m 继续监测CPU /n >nul
goto start

pause

你可能感兴趣的:(android,p系统架构,cpu,内存,占用率)