Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ps -ef | grep "java command" - process id

Status
Not open for further replies.

polka4ever

Technical User
Jan 25, 2006
42
US
Hello!

I am using this command in PERL:

system "ps -ef | grep 'java command'";

But how do i get the process ID off of this so I can kill the process? Also, I want to be very sure I am killing the correct process as well.

~p4e
 
This might be what you're after.

Have you considered forking the child processes, rather than calling system("command");?


Paul
------------------------------------
Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
Ok - i'm trying to read up on "fork" now. I haven't ever used this before, and i'm very new to perl.

I guess, what I was thinking was that perhaps I could maybe take `ps -ef | grep "java command"` in as a variable ($var) and then maybe substr ($var, 8, 7) - and then kill whatever the value of substr is?
 
problem with that is you need to be sure no other process is running with the same name

Paul
------------------------------------
Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
It probably makes it a bit easier if you don't have your "grep" in the system command you're executing. The problem there is that the grep process will also grep itself, as its output from "ps" also contains "java command".

This will give you an array of all the PIDs that match "java_command":
Code:
my @pids = map +( split )[1], grep /java command/, `ps -ef`;

If you want to kill all those processes, you can then do:
Code:
kill 9, @pids;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top