System
ADB Debugging
Package Manager
Logcat
Wireless
File Manager
ScreenShot
Network
logcat
This command is used to show the list of all processes in android
adb shell ps -A
Show all processes that aren't session leaders
adb shell ps -A
adb shell ps -p PID
Show a process with the particular PID
adb shell ps -p 1256
adb shell ps -t
Show threads
adb shell ps -t
adb shell ps -d
Show all processes that aren't session leaders
adb shell ps -d
adb shell ps
adb shell ps
Frequently Asked Questions
It is a command that is used to list thr running processes in Android.
It lists all the running android processes while showing the Process ID(PID), Parent Process ID(PPID), Virtual Size, Process Name and more for each process.
The command adb shell ps itself can list all the processes if you are running on a version lower than Android 8.0. On a higher or equivalent version, adb shell ps -A is required to list all processes.