chromeバージョン145.0.7632.110(最新)では chrome:/…
自分のプロセスIDと稼動中のプロセスIDを調べる
自分のプロセスID
my $pid = $$;
稼動中のプロセスID
opendir(PROC, "/proc") or die "Unable to open /proc;$!\n";
while(defined($_ = readdir(PROC))){
next unless /^\d+$/;
print $_."\n";
}
closedir(PROC);
検索

コメントを残す