我正在做一个硬件任务,想知道是否有更多 Unix 经验的人可以解释以下问题的含义:
Run sample program 1 in the background with &
Using the ps utility with appropriate options, observe and report the PIDs and the status of your processes.
示例程序 1 是:
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int
main()
{
puts("Before fork");
fork();
sleep(10);
puts("After fork");
}
我编译并运行:
./fork_demo &
在后台运行时使用 ps 的最佳方法是什么?我只是在这里寻找指导,这只是硬件任务的一小部分。我已经完成了主要的工作!