0

我有一个任务是“在 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?感谢您提供任何帮助。

4

1 回答 1

1

如果我理解正确,您只是在询问如何使用程序名称运行程序,而不是使用文件的完整路径。

$ prgm4 # You want this...
$ /path/to/my/program/prgm4 # ...Instead of this.

如果是这样,它与程序本身没有任何关系。您需要将程序移动到$PATH变量中的某个位置,例如 Linux 上的 /usr/bin,或者编辑 PATH 变量以包含它已经在其中的目录。例如:

$ PATH="/path/to/my/program:$PATH"

有关更多详细信息,请参阅超级用户问题。

于 2013-03-19T17:07:39.010 回答