Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl # # Perl Process Killer (PPK) # ppk {process name, reqired} {iterations, optional} # use strict; use warnings; my $loop = -1; my @immortal; my $flags; my $process; my $id; my $only_one = 0; my @level = qw/1 2 3 15 9 -9/; sub check_match { die "ACK, GASP: $id failed to match on $_[0]" if( (not $only_one) & +& ((not defined $_[1]) || (not defined $_[2])) ); die "ACK, GASP: $id failed to match on $_[0]" if($only_one && (not +defined $_[1])); } die "ACK, GASP: Need program name to search for!\n" if( (not defined $ARGV[0]) || ($ARGV[0] =~ m/^\s*\d+\s*$/) ); # Other operating systems can be supported, I just do not have access +to them # to configure $^O, $flags, $process, and $id properly. # $^O should be matched against the platform you wish to add support f +or # $flags must be set so "ps $flags" returns (at least) the User ID, Pr +ocess ID, and Command Name # $process is a regexp that matches against the Command Name # $id is a regexp that matches the User ID and Process ID; putting the +m into $1 and $2, respectivly # Also, don't forget to anchor your $process and $id matches! if($^O =~ m/linux/i) { $flags = "-ea"; eval { $process = qr/\s+(?:\d+[:])+?\d+\s+.*?$ARGV[0].*?\s*$/; }; if($@) { $@ =~ s/\s+at\s+.*?$0.*$//i; die "ACK, GASP: \"$ARGV[0]\" is an invalid command line argument: +\n" . " $@"; } $id = qr/^\s*(\d+)\s+/; $only_one = 1; } elsif($^O =~ m/irix/i) { $flags = "-eaf"; eval { $process = qr/\s+(?:\d+[:])+?\d+\s+.*?$ARGV[0].*?\s*$/; }; if($@) { $@ =~ s/\s+at\s+.*?$0.*$//i; die "ACK, GASP: \"$ARGV[0]\" is an invalid command line argument: +\n" . " $@"; } $id = qr/^\s*(\w+)\s+(\d+)\s+/; } else # Provide crippled functionality... { $flags = ""; eval { $process = qr/\d+\s+.*?$ARGV[0].*?\s*$/; }; if($@) { $@ =~ s/\s+at\s+.*?$0.*$//i; die "ACK, GASP: \"$ARGV[0]\" is an invalid command line argument: +\n" . " $@"; } $id = qr/^\s*(\d+)\s+/; $only_one = 1; } if( (defined $ARGV[1]) && !($ARGV[1] =~ m/\D/o) && ($ARGV[1] > 0) ) { +$loop = int($ARGV[1]); } my $login = (getpwuid($>))[0] || getlogin() || (getpwuid($<))[0]; while($loop != 0) { $loop-- if($loop > 0); foreach (map { $_->[0] } sort { $b->[1] <=> $a->[1] } map { m/$id/; check_match($_, $1, ((not $only_one) ? $2 : "")); [$_, ((not $only_one) ? $2 : $1)] } grep { m/$process/ } `ps $flags`) { m/$id/; check_match($_, $1, ((not $only_one) ? $2 : "")); next if( ((not $only_one) && ($1 ne $login) && ($login ne "root")) || (((not $only_one) ? $2 : $1) == $$) || (scalar grep { ((not $only_one) ? $2 : $1) == $_ } @immor +tal) ); my $successful = 0; foreach (@level) { if((kill $_, ((not $only_one) ? $2 : $1)) >= 1) { $successful = 1; last; } } if(not $successful) { warn "WARNING: I cannot kill PID " . ((not $only_one) ? $2 : $1 +) . "!\n"; push @immortal, ((not $only_one) ? $2 : $1); } } sleep(1) if($loop != 0); }

In reply to ppk by northwind

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found