shell-like program(Shell程序的基本實施部分),直接上代碼:
#include "apue.h"
#include <sys/wait.h>
int main(void)
{
char buf[MAXLINE]; /* form apue.h 4096 */
pid_t pid;
int status;
printf("%% "); /* print promt (printf requires %% to print %) */
while (fgets(buf, MAXLINE, stdin) != NULL) {
if (buf[strlen(buf) - 1] == '\n') {
buf[strlen(buf) - 1] = 0; /* replace newline while null */
}
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);
}
/* parent */
if ((pid = waitpid(pid, &status, 0)) < 0) {
err_sys("waitpid error");
}
printf("%% ");
}
exit(0);
}
再貼上vim的
測試:
這個小程序的功能限制就是不能給命令傳入參數,比如我們不能指定目錄名給list,我們只能在當前工作目錄中運行。