Solaris / OpenSolarisThis forum is for the discussion of Solaris and OpenSolaris.
General Sun, SunOS and Sparc related questions also go here.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
- From the master script , I have to start, stop the restart script on certain conditions.
- To achieve the above functionality, I need to get the processID of the restart script. But when i try the following script I am not able to get the processId.
Sample Master Script
====================
./restart.sh &
while true; do
if [ check for some condition ]
then
restartId=`ps -ef | grep "restart.sh" | grep -v "grep" | sed /zap/d | cut -c10-15`
if [ -n "$restartId" ]
then
echo "Killing the restart script"
kill -9 $restartId
fi
fi
sleep 1
done
- When I manually tried to '$ Ps -ef | grep restart.sh' , I could not see any process running.
Is there any better and efficient way to do the above.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.