我有一个任务是“在 C/C++ 中创建一个 microshell”,我试图弄清楚这到底意味着什么。到目前为止,我有这个 C 代码:
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <sstream>
#include <stdlib.h>
#include <sys/utsname.h>
int main(void)
{
char buf[1024];
pid_t pid;
int status;
printf("%% ");
while (fgets(buf,1024,stdin) != NULL)
{
buf[strlen(buf) -1] =0; //remove the last character. Important!
if ((pid = fork()) <0)
printf("fork error");
else if (pid==0)
{ /* child */
execlp(buf, buf, (char *) 0);
printf("couldn't execute: %s", buf);
exit(127);
}//else if end
/* parent */
if ( (pid = waitpid(pid, &status, 0)) <0)
printf("waitpid error");
printf("%% ");
}//while end
exit(0);
}//main end
我需要能够仅使用它的名称来调用它。所以我的程序的名字是prgm4.cpp,所以我需要能够做到这一点:
%>prgm4
prgm4>(user enters command here)
我需要在我的代码中添加什么才能做到这一点?另外,我将如何更改它以接受带有两个单词的命令,例如 cat file.txt?感谢您提供任何帮助。