I need a platform independent (Linux/Unix|OSX) shell/bash command that will determine if a specific process is running. e.g. mysqld, httpd...
What is the simplest way/command to do this?
|
While The output on Gentoo Linux: 14484 ? S 0:00 apache2 14667 ? S 0:00 apache2 19620 ? Sl 0:00 apache2 21132 ? Ss 0:04 apache2 The output on OS X: 42582 ?? Z 0:00.00 (smbclient) 46529 ?? Z 0:00.00 (smbclient) 46539 ?? Z 0:00.00 (smbclient) 46547 ?? Z 0:00.00 (smbclient) 46586 ?? Z 0:00.00 (smbclient) 46594 ?? Z 0:00.00 (smbclient) On both Linux and OS X, grep returns an exit code so it's easy to check if the process was found or not:
Furthermore, if you would like the list of PIDs, you could easily grep for those as well: ps cax | grep httpd | grep -o '^[ ]*[0-9]*' Whose output is the same on Linux and OS X: 3519 3521 3523 3524 The output of the following is an empty string, making this approach safe for processes that are not running: echo
This approach is suitable for writing a simple empty string test, then even iterating through the discovered PIDs.
You can test it by saving it to a file (named "running") with execute permissions (chmod +x running) and executing it with a parameter:
WARNING!!! Please keep in mind that you're simply parsing the output of References: |
|||||||||
|
|
On most Linux distributions, you can use It will print the process ids of all running instances of specified processes, or nothing if there are no instances running. For instance, on my system (I have four instances of
On other Unices, |
|||||||
|
|
This should work on most flavours of Unix, BSD and Linux:
Tested on:
|
|||||||||||||||
|
|
Just a minor addition: if you add the
is all the typing you'll need on a bsd-ish system (this includes MacOSX) You can leave the On a system where the genetics of the native
or
for a listing containing more than just pid and process name. Of course you could select the specific fields to print out using the |
||||
|
|
|
I use |
|||||||
|
|
The simpliest way is to use ps and grep:
If your command has some command arguments, then you can also put more 'grep cmd_arg1' after 'grep $command' to filter out other possible processes that you are not interested in. Example: show me if any java process with supplied argument: -Djava.util.logging.config.file=logging.properties is running
|
|||
|
|
|
|||
|
|
|
If you know the PID: ps -p <pid> is POSIX and hence portable. I think it is a good idea always to store the PID when you launch something in the background. In Bash this can be done with the Only the pid is truly unique. |
||||
|
|
|
This helps ps -ef|grep trololo |
|||||||
|
The 'ps -A' command will print all the processes out and pipe it's output into the input of 'grep mysqld' which should show only the lines which have mysqld as the process name. It will also show the process id etc of the process if it's running. This way you don't need the pid to find it. |
|||||
|
protected by Toon Krijthe Apr 11 at 11:28
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

ps+grep?.. – NPE Feb 2 '12 at 18:08