The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 06-26-2008
joeyg's Avatar
joeyg joeyg is offline Forum Staff  
modérateur
  
 

Join Date: Dec 2007
Location: Home of 17-time world champion Boston Celtics
Posts: 1,311
Wink What do you know about the 'other' process?

There are many approaches to finding out about the execution and/or completion [assumed complete if not running] of another process.

1) Have the other program write a file as it starts, and delete it upon its exit. Then, you just need to check if the file exists.
2) By checking for parameters with the 'grep' at the end of a
>ps -ef | grep ___
3) By checking for the existence of specific files [assuming you can run lsof - which may need to be installed]. lsof does a list of open files.
>lsof | grep ___