DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Wait For Other Process To Finish
# There's another process you want to wait on. In this example, # you know the pid, and it's contained in the file $PID_FILE. while ps -p `cat $PID_FILE` > /dev/null; do sleep 1; done # Now you can continue knowing that process has finished...






Comments
Snippets Manager replied on Tue, 2007/06/19 - 7:17am
wait $pidOtherwise, usekill -0 $pid >/dev/null.