使用execvp()执行shell命令

时间:2014-12-15 19:30:52

标签: c++ linux shell command

我想编写一个类似Linux shell的程序。我开始编写一个小程序来执行“ls”命令。我无法弄清楚的是我应该如何进行以使我的程序响应像shell这样的任何命令。 (例如cat,cd,dir)。

#include <iostream>
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>
#define MAX 32
using namespace std;

int main() {
    pid_t c; 
    char s[MAX];
    int fd[2];
    int n;

    pipe(fd);
    c = fork();

    if(c == 0) {
        close(fd[0]);
        dup2(fd[1], 1);
        execlp("ls", "ls", "-l", NULL);
        return 0;
    } else {
        close(fd[1]);
        while( (n = read(fd[0], s, MAX-1)) > 0 ) {
            s[n] = '\0';
            cout<<s;
        }
        close(fd[0]);
        return 0;
    }

    return 0;
}

如何让我的程序读取用户键入的内容并将其传递给execlp(或类似的东西)?

2 个答案:

答案 0 :(得分:3)

shell基本上执行以下操作:

  1. 从stdin
  2. 读取一行
  3. 解析该行以制作单词列表
  4. 然后shell(父进程)等待直到子进程结束,而子进程执行以执行从输入行提取的单词列表所代表的命令的代码。
  5. 然后shell在步骤1重新启动。
  6. 首先构造一个非常简单的shell。

答案 1 :(得分:1)

如果我正确理解了问题,您可以:

  • 使用scanf()
  • 读取字符串数组
  • 将其作为带execvp()的命令运行(它与execlp()的作用相同,但您可以将所有参数作为数组传递。)

类似的东西:

char args[100][50];
int nargs = 0;
while( scanf( " %s ", args[nargs] ) )
   nargs++;
args[nargs] = NULL;
/* fork here *
...
/* child process */
execvp( args[0], args );