Perl getppid 函数
-
描述
getppid 此函数返回父进程的进程ID。 -
句法
以下是此函数的简单语法-getppid
-
返回值
该函数返回父进程的进程ID。 -
示例
以下是显示其基本用法的示例代码-
尝试一下$ppid = getppid(); print "Parent Process ID $ppid\n";
执行结果:Parent Process ID 13478