首页 > 编程 > Perl > 正文

perl查找进程PID的例子

2020-10-31 15:16:31
字体:
来源:转载
供稿:网友

主要是利用查找/proc目录下的相关文件进行查找.

#!/usr/bin/perl use strict;use warnings;#usage: process_grep.pl  ProcessNameexit( main(@ARGV) ); sub main {  my $Phash;  my $ProcessName = shift;  my $PROC_DIR  = "/proc";  chdir $PROC_DIR;  my @pids = glob "[0-9]*";  for my $pid (@pids) {    open( FH, "$pid/cmdline" ) or die "Can't $pid file $!";    $Phash->{$pid} = $_ while <FH>;  }  delete $Phash->{"$$"};  for my $pid ( keys %$Phash ) {    print $pid, "/n" if $Phash->{$pid} =~ /$ProcessName/;  }  return 0;}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表