如何通过替换获得PPID的PID(C使用bash)?

时间:2016-10-18 07:29:14

标签: c bash pid

我必须写2个程序:
1)第一个只需要打印自己的PID - 而且没关系

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>

int main()
{
    int pid1;
    pid1 = getpid();
    printf("PID is : %d\n", pid1);
    return 0;
}

2)第二个程序必须打印PID并通过替换

启动第一个程序的过程

我该怎么做?

0 个答案:

没有答案