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