ady has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; my (@ccnet, $ccpid); @ccnet = split(/\n/, `ps`); @ccnet = grep(/ccnet.exe/, @ccnet); ($ccpid) = "@ccnet" =~ /\s+(\d+)\s+/; $ccpid and kill('HUP', $ccpid);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI, application context and security
by chromatic (Archbishop) on Apr 07, 2007 at 19:35 UTC | |
by ady (Deacon) on Apr 07, 2007 at 20:06 UTC | |
|
Re: CGI, application context and security
by ww (Archbishop) on Apr 08, 2007 at 01:28 UTC | |
by ady (Deacon) on Apr 08, 2007 at 18:43 UTC | |
|
Re: CGI, application context and security
by ady (Deacon) on Apr 08, 2007 at 18:19 UTC | |
|
Re: CGI, application context and security
by eric256 (Parson) on Apr 08, 2007 at 15:31 UTC |