Hi All,
I have 2 programs running by the following names:
a_testloop.sh
testloop.sh
I read these programs names from a file and store each of them into a variable called $program.
On the completion of the above programs i should send an email.
When i use grep with ps to see if any of these are running i cannot differentiate between the two.
I am using the following command:
ps -ef|grep $program|grep -v grep
The above command succeeds for both the cases even when only a_testloop.sh is running as testloop.sh is a part of a_testloop.sh. I want to grep/search only the exact string not substring. Please help.
Thanks,
Albert