- 论坛徽章:
- 0
|
创建子进程,执行简单命令:- #include "stdio.h"
- #include "stdlib.h"
- #include "unistd.h"
- #include "string.h"
- #include "sys/types.h"
- #include "sys/wait.h"
- #define MAXLINE 1024
- int
- main (int argc, char *argv[]) {
- pid_t pid;
- char buf[MAXLINE];
- int status;
- while (fgets(buf, MAXLINE, stdin) != NULL) {
- if (buf[strlen(buf) - 1] == '\n')
- buf[strlen(buf) - 1] = 0;
- if ((pid = fork()) < 0) {
- printf ("fork error");
- exit(0);
- }else if (pid == 0) {
- execlp (buf, buf, (char *)0);
- printf ("cound't execute %s\n", buf);
- exit(127);
- }
- if ((pid = waitpid (pid, &status, 0)) < 0)
- printf ("waitpid error");
- }
- exit(0);
- }
复制代码 |
|