I have a script that has to kill a certain number of times a resource managed by a high avialability middelware. It basically checks whether the resource is running and kills it afterwards, i need the timestamp of when the proc is really killed. So i have done this code:
#!/bin/bash
echo "$(date +"%T,%N") :New measures Run" > /home/hassan/logs/measures.log
for i in {1..50}
do
echo "Iteration: $i"
PID=`ps -ef | grep "/home/hassan/Desktop/pcmAppBin pacemaker_app/MainController"|grep -v "grep" | awk {'print$2'}`
if [ -n "$PID" ]; then
echo "$(date +"%T,%N") :Killing $PID" >> /home/hassan/logs/measures.log
ps -ef | grep "/home/hassan/Desktop/pcmAppBin pacemaker_app/MainController"|grep -v "grep" | awk {'print "kill -9 " $2'} | sh
wait $PID
else
PID=`ps -ef | grep "/home/hassan/Desktop/pcmAppBin pacemaker_app/MainController"|grep -v "grep" | awk {'print$2'}`
until [ -n "$PID" ]; do
sleep 2
PID=`ps -ef | grep "/home/hassan/Desktop/pcmAppBin pacemaker_app/MainController"|grep -v "grep" | awk {'print$2'}`
done
fi
done
But with my wait command i get the following error message: wait: pid xxxx is not a child of this shell
I assume that You started the child processes from bash and then start this script to wait for. The problem is that the child processes are not the children of the bash running the script, but the children of its parent!
If You want to launch a script inside the the current bash You should start with
.
.An example. You start a
vim
and then You make is stop pressing^Z
(later you can usefg
to get back tovim
). Then You can get the list of jobs by using the˙jobs
command.Then You can create a script called
test.sh
containing just one command, calledjobs
. Add execute right (e.g.chmod 700 test.sh
), then start it:As the first version creates a new bash session no jobs are listed. But using
.
the script runs in the present bash script having exactly one chold process (namelyvim
). So launch the script above using the.
so no child bash will be created.Be aware that defining any variables or changing directory (and a lot more) will affect to your environment! E.g. PID will be visible by the calling bash!
Comments:
...|grep ...|grep -v ... |awk ---
pipe snakes! Use...|awk...
instead!ps -o pid= -C pcmAppBin
to get just the pid, so the complete pipe can be avoided.system("mycmd");
built-inI hope this helps a bit!