-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy path1.9.c
37 lines (30 loc) · 836 Bytes
/
1.9.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "apue.h"
#include <sys/wait.h>
static void sig_int(int);
int main(int argc, char *argv[]) {
char buf[MAXLINE];
pid_t pid;
int status;
printf("pid: %d\n", getpid());
if (signal(SIGINT, sig_int) == SIG_ERR)
err_sys("signal error");
printf("%% ");
while (fgets(buf, MAXLINE, stdin) != NULL) {
if (buf[strlen(buf) - 1] == '\n')
buf[strlen(buf) - 1] = 0;
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (pid == 0) {
execlp(buf, buf, (char *) 0);
err_ret("couldn't execute: %s", buf);
exit(127);
}
if ((pid = waitpid(pid, &status, 0)) < 0)
err_sys("waitpid error");
printf("%% ");
}
exit(0);
}
void sig_int(int signo) {
printf("interrupt\n%% ");
}