Unable to grep the process


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unable to grep the process
# 8  
Old 12-06-2016
Quote:
Originally Posted by mohtashims
.
.
.
ps -ef[/iCODE] also does not show /tmp/logginexpert.sh
.
.
.
How do you expect grep to find it, then? Please show the output of /bin/ps -ef for ALL the relevant processes.
# 9  
Old 12-06-2016
Tools

Quote:
Originally Posted by RudiC
How do you expect grep to find it, then? Please show the output of /bin/ps -ef for ALL the relevant processes.
Here is the Output

Code:
     UID   PID  PPID   C    STIME TTY         TIME CMD
  netcfg  5865  4775   0   Nov 20 ?           0:36 /lib/inet/netcfgd
    root  4775  4775   0   Nov 20 ?           0:00 zsched
  daemon  5887  4775   0   Nov 20 ?           0:17 /lib/crypto/kcfd
    root  5997  4775   0   Nov 20 ?           1:17 /lib/inet/in.mpathd
    user2  7364  5339   0 04:01:03 ?           0:00 ksh -x pls_med_02001.sh
    root 12094 11832   0 10:49:27 pts/5       0:00 sudo -u user2 -i -H
    user2 13301 13290   0   Nov 28 pts/10      0:00 zsh
    root 11047  4775   0   Nov 20 ?          66:02 ./Agent.bin -a
    root 12877 12720   0   Nov 28 pts/9       0:00 sudo -u user2 -s -H
    root 12239 12094   0 10:49:30 pts/6       0:00 sudo -u user2 -i -H
    user2 16470 29038   0 04:04:28 ?           0:00 sleep 60
user1 26410 26381   0 12:04:26 pts/17      0:00 bash
    user2 15504 15503   0 04:03:44 pts/16      0:00 sleep 888
user1 26381 26380   0 12:04:24 pts/17      0:00 -ksh
user1 28576 28575   0 12:05:37 pts/8       0:00 -ksh
u1064978 12720 12433   0   Nov 28 pts/9       0:00 bash
    root 15626 15477   0 12:11:39 pts/16      0:00 sudo -u user2 -s -H
    user2 15730 15627   0 12:11:41 pts/16      0:00 bash
    user2 16716 16712   0 04:04:40 ?           0:00 tee -a sendemail.603486944.154.log
    root 10476 10328   0 12:21:43 pts/11      0:00 sudo -u user2 -s -H
    root  2512  2511   0 00:33:22 ?           0:01 cdcwatch 2511 -F -M
    user2 12241 12239   0 10:49:30 pts/6       0:00 -ksh
    user2 25389 25384   0 03:40:07 ?           0:00 ksh -x eload.sh 431 LOAD REAL 58731
    root 10328 26410   0 12:21:39 pts/17      0:00 sudo -u user2 -s -H
   rgopi  9324  4775   0        - ?           0:00 <defunct>
    root 13289 12877   0   Nov 28 pts/10      0:00 sudo -u user2 -s -H
    root 15477   781   0 12:11:36 pts/8       0:00 sudo -u user2 -s -H
    user2 16256 28862   0 04:04:23 ?           0:00 sleep 60
    user2 15503 15730   0 04:03:44 pts/16      0:00 bash
    user2 12309 12241   0 10:49:30 pts/6       0:00 zsh
    user2 15949 12309   0 10:50:45 pts/6       0:00 cat
user1   781 28576   0 12:06:36 pts/8       0:00 bash

You have new mail in /var/mail/user1

The one in BOLD is my process which i m not able to grep (find).
# 10  
Old 12-06-2016
Which "ex" string do you want to match in that bolded line?

That process' parent process (ID 15503) is a bash shell - NO logginexpert.sh! So I have to challenge your first statement in post#1.
# 11  
Old 12-06-2016
Hammer & Screwdriver

Quote:
Originally Posted by RudiC
Which "ex" string do you want to match in that bolded line?

That process' parent process (ID 15503) is a bash shell - NO logginexpert.sh! So I have to challenge your first statement in post#1.
k ... looks like i have to explain this again.

The script name is logginexpert.sh which has the sleep 888 line in it.

So, when i run logginexpert.sh in the background i see the sleep 888 which is shown in the output of my /bin/ps -ef command.

So, it is not listing the process with the name of the script i.e logginexpert.sh which is what i want !! ...instead it is listing the sleep 888 command that is in the script.

I have highlighted this before as well.

Last edited by mohtashims; 12-06-2016 at 06:57 AM..
# 12  
Old 12-06-2016
And I'd challenge that statement. A script would usually wait for its children (and then show up in the ps listing). I don't even believe you put sleep 888 into background with nohup or disown, as then, it's parent would become 1 (init).
Post the relevant part of logginexpert.sh.
# 13  
Old 12-06-2016
Quote:
Originally Posted by RudiC
And I'd challenge that statement. A script would usually wait for its children (and then show up in the ps listing). I don't even believe you put sleep 888 into background with nohup or disown, as then, it's parent would become 1 (init).
Post the relevant part of logginexpert.sh.
Code:
more logginexpert.sh

echo wowww
sleep 888
echo wow

# 14  
Old 12-06-2016
You are probably hitting the problem that you script is only showing as a bash process like me:-

Session 1:-
Code:
$ cat /tmp/robinsleep.sh 
sleep 888

$ /tmp/robinsleep.sh

Session 2:
Code:
$ ps -ef|grep sleep
rbatte1 21561 21560  0 11:47 pts/9    00:00:00 sleep 888
rbatte1 21563 21537  0 11:47 pts/10   00:00:00 grep sleep
$ ps -fp 21560
UID        PID  PPID  C STIME TTY          TIME CMD
rbatte1 21560 21516  0 11:47 pts/9    00:00:00 bash
$



Robin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Unable to grep using wildcard in a file.

I wish to check if my file has a line that does not start with '#' and has 1. Listen and 2. 443 echo "Listen 443" > test.out grep 'Listen *443' test.out | grep -v '#' Listen 443 The above worked fine but when the entry changes to the below the grep fails... (2 Replies)
Discussion started by: mohtashims
2 Replies

2. Shell Programming and Scripting

Unable to do grep in a script

Hi, I am trying to grep a filename from a script after taking the file name and other variables as keyboard input .When I run the grep command with the same filename on the prompt, it runs fine, but it is either not giving me the correct output or not running at all from the script using the... (13 Replies)
Discussion started by: dsid
13 Replies

3. UNIX for Dummies Questions & Answers

Unable to grep

I have a file with 2 lines of code Rome is in Romeo Romeo is in Rome How do I grep, so that only last line would be the outcome. sample output Romeo is in Rome I have tried with all possible greps but its resulting in both the lines in output. Please help. (6 Replies)
Discussion started by: gotamp
6 Replies

4. UNIX for Dummies Questions & Answers

cron job is unable to process

Hi All, I have got a shell script that excutes some job and mails me the output as an attachment. While running the script manually, its perfect. when i am scheduling the job through crontab, i am getting the mail. but the attachment but this is a blank file. after the scheduler run, i can... (2 Replies)
Discussion started by: gotam
2 Replies

5. Shell Programming and Scripting

Unable to Kill the process

Hi Guys, I am unable to kill the process . and same process is running so many times. If i am trying to kill once again it restarting/kicked off again. and now i am unable to login . i am getting error message like "error -cannot fork too many process " i know when we ll get this message... (8 Replies)
Discussion started by: kartheek
8 Replies

6. Shell Programming and Scripting

grep the process id and kill all the filtered process

Hi I want to write a shell script which can find the process id's of all the process and kill them eg: ps ax | grep rv_ 3015 ? S 0:00 /home/vivek/Desktop/rv_server 3020 ? S 0:00 /home/vivek/Desktop/rv_gps 3022 ? S 0:00 /home/vivek/Desktop/rv_show ... (7 Replies)
Discussion started by: vivek_naragund
7 Replies

7. BSD

Unable to process from lines (envelopes)

Hi, Some of the users on my freebsd server are getting the "unable to process from lines" error when accessing their mailbox. I've checked their mailbox and found that there was a blank line at the top of the mailbox. Everytime i remove it, it appears again sometime later. I've tried... (1 Reply)
Discussion started by: sc_king
1 Replies

8. HP-UX

Unable to kill a process

problem. (2 Replies)
Discussion started by: pvamsikr
2 Replies

9. Shell Programming and Scripting

unable to grep the following pattern

I have the following line in file1 elif ; then now if i try to grep this using following command grep -e "elif ; then" file1 it is showing nothing... how to grep such patterns (2 Replies)
Discussion started by: suri
2 Replies

10. Shell Programming and Scripting

Unable to kill sleeping process

Hi, I'm trying to delete a sleeping process (parent ID is not 1) with "kill -9" command by the owner of the process (infodba) but it doesn't get killed. Is there any way of killing this process without killing the parent process or rebooting? (I'm using HP Unix B.11.11) $ ps -eflx | grep... (0 Replies)
Discussion started by: stevefox
0 Replies
Login or Register to Ask a Question