I have a LG H810 device and I want to get the total number of processes that are currently running on the device using adb command.
I don't want to see the actual processes, I only want the total number of running processes.
Thanks
I have a LG H810 device and I want to get the total number of processes that are currently running on the device using adb command.
I don't want to see the actual processes, I only want the total number of running processes.
Thanks
I guess this is what you are looking for , to get Process Count!
adb shell ps r|wc
BTW: you might want wc to count lines, so wc -l in that case.
like :
adb shell ps r|wc -l