Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find out the running process ID by package name

Tags:

I am working on a script in which I need to supply the PID of my application. I am able to list all the processes with their PIDs by following command and could see the entry of my application.

adb shell ps

This gives me a huge list of processes. And I need a single entry (which I can further supply to another command), so I want to filter this results with a package name. The grep command does not work on my windows machine. Also tried following command but it didn't help.

adb shell ps name:my_app_package

like image 418
Mukesh Bhojwani Avatar asked Mar 25 '13 06:03

Mukesh Bhojwani


People also ask

How do I find running process ID?

The easiest way to find out if process is running is run ps aux command and grep process name. If you got output along with process name/pid, your process is running.

How find PID process name in Linux?

With Linux, the info is in the /proc filesystem. To get the command line for process id 9999, read the file /proc/9999/cmdline . And to get the process name for process id 9999, read the file /proc/9999/comm .


Video Answer


2 Answers

Since Android 7.0 the easiest way to find out the process ID by package name is to use pidof command:

usage: pidof [-s] [-o omitpid[,omitpid...]] [NAME]...  Print the PIDs of all processes with the given names.  -s      single shot, only return one pid. -o      omit PID(s) 

Just run it like this:

adb shell pidof my.app.package 

In Android before 7.0 people used ps command and then parsed its output using either built-in filter by comm value (which for android apps is the last 15 characters of the package name) or grep command. The comm filter did not work if the last 15 characters of the name started with a digit and the grep was not included by default until Android 4.2. But even after the proper process line was found the PID value still needed to be extracted.

There were multiple ways to do that. Here is how finding the process and extracting PID could be done with a single sed command:

adb shell "ps | sed -n 's/^[^ ]* *\([0-9]*\).* my\.app\.package$/\1/p'" 

Again the problem is that sed was was not included by default until Android 6.0.

But if you must use an older device you can always use the following Android version independent solution. It does not use any external commands - just Android shell built-ins:

adb shell "for p in /proc/[0-9]*; do [[ $(<$p/cmdline) = my.app.package ]] && echo ${p##*/}; done" 

The most popular reason for looking for a PID is to use it in some other command like kill. Let's say we have multiple instances of logcat running and we want to finish them all gracefully at once. Just replace the echo with kill -2 in the last command:

adb shell "for p in /proc/[0-9]*; do [[ $(<$p/cmdline) = logcat ]] && kill -2 ${p##*/}; done" 

Replace " with ' if running the commands from Linux/OSX shell.

like image 183
Alex P. Avatar answered Sep 20 '22 08:09

Alex P.


Instead of using adb shell ps, firstly enter adb shell and then use ps.

Step by step:

  1. Enter adb shell command while a device (or emulator) is connected.
    (Command line prefix will be shell@android:/ $ after executing this command.)

  2. Enter ps | grep <package_name_to_be_filtered> (i.e. ps | grep com.google).


C:> adb shell shell@android:/ $ ps | grep com.google u0_a64  3353  2467  903744 52904 ffffffff 00000000 S com.google.process.location u0_a64  3426  2467  893964 49452 ffffffff 00000000 S com.google.process.gapps 
like image 28
Devrim Avatar answered Sep 21 '22 08:09

Devrim