我的任务是编写一个程序,该程序列出所有活动用户,以及当程序接收到 SIGHUP 信号并退出时,当程序收到 SIGINT 信号时,它们活动的进程数量。
我有这个用于列出用户和进程计数
ps -u "$(echo $(w -h | cut -d ' ' -f1 | sort -u))" o user= | sort | uniq -c | sort -rn
这就是我的程序。我可能会以错误的方式进行操作,并且可以使用一些帮助。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
#include <signal.h>
void sig_handler(int signo) {
if (signo == SIGHUP){
int pid = 0;
if (pid = fork() != 0) {
execl("/bin/ps", "ps", "-u", "\"$(echo $(w -h | cut -d ' ' -f1 | sort -u))\"", "o", "user=", "|", "sort", "|", "uniq", "-c", "|", "sort", "-rn", NULL);
} else {
printf("Signal received: SIGINT\nReported by: Parent process\n\n");
}
}
}
int main(void) {
if (signal(SIGHUP, sig_handler) == SIG_ERR)
printf("\nCan't catch SIGINT\n");
while (1)
sleep(1);
return 0;
}