Confusion with PS


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Confusion with PS
# 8  
Old 09-27-2012
Hey Alister,

Yes I WAS lucky to get that desired ouput. After a while, I found out am unlucky.. It again started creating that mess. Also the problem is my system doesn't contain pgrep Smilie I found out another way to accomplish my result.

If there is any other way that we can acquire the result with grep, wc or other silly commands, please post here..
# 9  
Old 09-27-2012
Exactly which version of which operating system you are using?

It will help to know exactly what you're trying to accomplish. Show us the shell script and explain what it's supposed to do.

Regards,
Alister
# 10  
Old 09-27-2012
Quote:
If there is any other way that we can acquire the result with grep, wc or other silly commands, please post here..
Hint:
Code:
ps -ef >tmpfile
count=$(grep $0 tmpfile |grep -v grep |wc -l)
...

--
Bye

EDIT: LOL, obviously in this case there's no need to purge "grep" strings from grep output.

Last edited by Lem; 09-27-2012 at 02:34 PM..
# 11  
Old 09-28-2012
@Lem: you are simply awesome.

@Alister: I have a cron which runs my script every 1 minute. If any error identified by my script, it runs another program which takes a while say 4 mins. Until it gets completed, my Cron should not allow the Script to run on the next minute.. So i thought of counting the number of PS of that script name will fix that problem. Thanks to Lem for that Solution.

What I have built is as below:
Code:
pd=$(head -1 pid.check)
ps -ef | grep $pd | grep -v grep 
if [ $? -eq 0 ]; then
exit 0
fi

pid1=$$
echo "$pid1" > pid.check

Shout me if the above fails at any condition, I will correct my code. Thanks
# 12  
Old 09-28-2012
Needs a "first time" condition. Also, if you know the pid just look for the one pid. You can dump the output from ps as you only need to know if the process is still running.
Code:
# Has previous script finished?
if [ -f pid.check ]
then
       pd=$(head -1 pid.check)
       ps -fp $pd 1>/dev/null
       if [ $? -eq 0 ]
       then
              exit 0
       fi
fi
# Record pid of current script
pid1=$$
echo "$pid1" > pid.check
### PROCESSING GOES HERE


It would be better to specify a directory (e.g. /var/tmp) for pid.check file or it will be created in the home directory of the owner of the crontab.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Confusion in hash

Hi folks, If a declare a direct hash , then the hash element works fine. my %test = ("test",1); print %test; print "\n"; Here in the above, the name of the hash is predeclared... Suppose now I need to create the hash elements dynamically in the for loop. $test="hash"; my... (1 Reply)
Discussion started by: scriptscript
1 Replies

2. Shell Programming and Scripting

confusion in use of exit 0

hi i am new to shell scripting. i was going thru the part option and arguments. on this section i fail to understand the use of exit 0 in below example . #!/bin/sh USAGE="Usage: $0 " case "$1" in -t) TARGS="-tvf $2" ;; -c) TARGS="-cvf $2.tar $2" ;; *) echo "$USAGE" exit 0 ;; esac... (13 Replies)
Discussion started by: scriptor
13 Replies

3. Homework & Coursework Questions

Server Confusion

I don't even know where to start with this one. There is so much out there about different aspects of this. I am starting with a basic Ubuntu 11.04 install. Do I need to configure a DNS? I am a little confused about that. What do I need to do for a domain name? I have followed various tutorials,... (1 Reply)
Discussion started by: polyglot0727
1 Replies

4. Programming

shmget confusion?????

Hi friends, This is a small program built on the concept of shared memory. The producer is a separate program and process, and the consumer is a seperate program and process. Both are executed under the same user account. The producer takes some string from the user and adds that string to the... (1 Reply)
Discussion started by: gabam
1 Replies

5. Shell Programming and Scripting

conditional confusion

Hell Unix.com Community: I am working on a personal project using yad v0.12.4 (zenity fork) and have hit a wall on how to show a progress bar while my function is processing. I have been all over the ABS Guide, googled 21 Linux-specific sites that I revere. I even asked on the yad-common... (4 Replies)
Discussion started by: Habitual
4 Replies

6. Programming

C fork Confusion :-?

Hi, I was trying to learn forking in C in UNIX. Somehow i still haven't been able to get the concept well. I mean, i do understand that fork creates an exact replica of the parent (other than the fact that parent gets the process id of the child and child gets 0 when fork is called). This is the... (2 Replies)
Discussion started by: ralpheno
2 Replies

7. UNIX for Dummies Questions & Answers

crontab confusion

I come across an entry in cron which is in such: 0 * * * * What is the first 0 indicating? 0 minute? meaning a script cron as such will run every minute? :confused: (2 Replies)
Discussion started by: user50210
2 Replies

8. UNIX for Dummies Questions & Answers

'tr' confusion

Good day, everyone! Could anybody explain me the following situation. If I'm running similar script: Var="anna.kurnikova" Var2="Anna Kurn" echo $Var | tr -t "$Var" "$Var2" Why the output is : anna KurniKova instead of Anna Kurnikova? :confused: Thank you in advance for any... (2 Replies)
Discussion started by: Nafanja
2 Replies

9. UNIX for Dummies Questions & Answers

unix confusion

:confused: some one please tell me where i can possibly find out what is unix 10.2 and the basic system functions of it is. I really need help! (1 Reply)
Discussion started by: tribb24
1 Replies
Login or Register to Ask a Question