getppid
返回父进程的进程ID。
父进程的进程ID
试试下面的例子:
#!/usr/bin/perl #by www.gitbook.net $ppid = getppid(); print "Parent Process ID $ppid\n";