Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: How do i obtain the PID of a program already running.

by cwest (Friar)
on Jun 29, 2000 at 19:21 UTC ( [id://20395]=note: print w/replies, xml ) Need Help??


in reply to How do i obtain the PID of a program already running.

ps -C program_name

From the Chatterbox earlier today, you were wanting to kill all the apache PID's with Perl...

shell> ps -C httpd | perl -pe '($_)=/(\d+)/;`kill -9 $_`'
That should work as root

Enjoy!

--
Casey

Replies are listed 'Best First'.
RE: Answer: How do i obtain the PID of a program already running. UPDATE
by cwest (Friar) on Jun 29, 2000 at 19:25 UTC
    I can't update my own posts... grrr!

    Change perl -pe to perl -ne actually...

    ps -C httpd|perl -ne'($_)=/(\d+)/;`kill -9 $_` if $_'
    
    That seems better to me.
    --
    Casey
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://20395]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-25 14:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found