
How can I run an app if another app is running?I need to run a Unix application if a different application is running, from within a shell script. How do I do this? If you know the name of the application and you are sure that only instantiation of it can be running at a given time, then the solution is pretty simple: running="$(ps -aux | grep yourappname)" Obviously, you'd need to change 'yourappname' to the appropriate name of the app you seek, but that's all you need to do. If you could have more than one version of the process running or otherwise don't have an easy way to identify it uniquely, then you have a greater challenge. For example, if you wanted to check for the Apache Web server (process name "httpd") but wanted to make sure that you weren't seeing a child process but the parent, then you'd also need to take into account the parent process ID (ppid) because the ppid of child processes is the parent process (which makes sense!): in the case of child Apache processes, their ppid's are the process ID (pid) of the parent Apache process. And that's exactly how you do it. Use a flag like '-j' to get the pid and ppid, use grep to pull out the matching processes by name, then check the ppid to identify which has the odd ppid out. Let me show you. Here's a set of processes shown in this format: $ ps -jax | grep http root 6706 1 0 Ss ?? 0:03.43 /usr/local/apache/bin/httpsd www 6707 6706 0 I ?? 0:11.91 /usr/local/apache/bin/httpsd www 6708 6706 0 S ?? 0:13.22 /usr/local/apache/bin/httpsd www 6709 6706 0 S ?? 0:13.46 /usr/local/apache/bin/httpsd www 6710 6706 0 I ?? 0:13.82 /usr/local/apache/bin/httpsd www 6711 6706 0 S ?? 0:12.36 /usr/local/apache/bin/httpsd www 19003 6706 0 S ?? 0:00.09 /usr/local/apache/bin/httpsd www 19046 6706 0 I ?? 0:00.01 /usr/local/apache/bin/httpsd www 19429 6706 0 S ?? 0:00.02 /usr/local/apache/bin/httpsd www 19432 6706 0 S ?? 0:00.04 /usr/local/apache/bin/httpsd www 19531 6706 0 I ?? 0:00.00 /usr/local/apache/bin/httpsd www 19612 6706 0 S ?? 0:00.01 /usr/local/apache/bin/httpsd www 19615 6706 0 S ?? 0:00.00 /usr/local/apache/bin/httpsd www 19616 6706 0 S ?? 0:00.00 /usr/local/apache/bin/httpsd www 19622 6706 0 S ?? 0:00.01 /usr/local/apache/bin/httpsd www 19624 6706 0 Z ?? 0:00.00 (httpsd) Notice that the second column is the process ID and the third is the parent process id: as you can see, the parent process is 6706 in this instance. You can identify this in your script (I've written about it here before) and then screen for a process by ID rather than by name (use the '-p process' flag to ps) then use the same basic test shown earlier to launch your secondary application, as needed. Hope that helps you out!
Help others find this article at Del.icio.us, Digg, Netscape, Reddit, and Simpy.
Categorized:
Shell Script Programming
, Unix and Linux Help
(Article 5229)
Tagged: linux, shell script programming, unix Previous: Are there any good collaborative editing tools online? Next: How can I avoid having Apple kill my shareware app? Subscribe!
Never miss another useful Q&A article again! Subscribe to AskDaveTaylor with Google Reader. The first simple solution won't work. On all Unix boxes that I have ever used, running="$(ps -aux | grep yourappname)" will match the grep in addition to yourappname, running will always be non-zero length and whatever is in the if will always run. There are a could of ways of dealing with this. You can either pipe the grep into a second grep -v running="$(ps -aux | grep yourappname | grep -v grep)" or use brackets on the appname running="$(ps -aux | grep [y]ourappname)" Both of these will remove the grep process from running, but use pgrep instead : if pgrep name >/dev/null ; then echo "running";done even better is to launch the process and save the PID so you don't have to guess, like this : program & then to check if the process is running, you can use: I have a lot to say, but ...
I do have a comment, now that you mention it!
|
Search
Find just the answers you seek from among our 1700+ free tech support articles by using our Lijit search engine.
Help!
Subscribe to
Ask Dave Taylor!
Free Updates!
Sign up and get free weekly updates and special offers on books, seminars, workshops and more.
Articles and Reviews
Auctions and Online Shopping Blogs and RSS Feeds Building Web site traffic Business and Management Cell Phones and Mobile Phones CGI Scripts and Web Site Programming Computer and Internet Basics d) None of the Above HTML and CSS Mac OS X Help MySpace, Facebook, Twitter and Social Network Help Pay Per Click (PPC) Search Engine Optimization Shell Script Programming Sony PSP, MP3 Players, Etc. The Writing Business Unix and Linux Help Video Game Tips and Help Windows Help
Recent Entries
Join the List!
Book Links
|