0

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

user3017513
  • 1,200
  • 1
  • 9
  • 8

1 Answers1

0

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
U.Swap
  • 1,821
  • 4
  • 20
  • 38