How to check the process is already running or not
- by TechGuru
I want to check the particular process in already running or not.
I refereed this Q&A.
But I didn't get any specific solution. Following is the example that I tried:
I have created abc.sh file and run this script on background, like sh abc.sh &.
Now this file is running on background and I fire the ps aux | grep "abc" command.
…