读入用户命令并执行它

时间:2014-11-04 15:02:33

标签: c input command prompt minix

我是C编程语言的新手,我正在尝试自己设定的练习。

我想要做的是能够读取用户写入然后执行它的命令。我还没有为此编写任何代码,我真的不确定如何做到这一点。

这基本上就是我想要做的事情:

显示用户提示(供用户输入命令,例如/ bin / ls -al)         阅读并处理用户输入

我目前正在使用MINIX尝试创建一些内容并更改操作系统。

由于

3 个答案:

答案 0 :(得分:0)

我会给你一个方向:

使用get来读取一行:http://www.cplusplus.com/reference/cstdio/gets/

你可以用printf显示

并使用系统执行调用:http://www.tutorialspoint.com/c_standard_library/c_function_system.htm

阅读一下这个函数,让自己熟悉它们。

答案 1 :(得分:0)

Shell在新进程中执行命令。这就是它的一般工作方式:

while(1) {
    // print shell prompt
    printf("%s", "@> ");
    // read user command - you can use scanf, fgets or whatever you want
    fgets(buffer, 80, stdin);
    // create a new process - the command is executed in the new child process
    pid = fork();
    if (pid == 0) {
        // child process
        // parse buffer and execute the command using execve
        execv(...);
    } else if (pid > 0) {
        // parent process
        // wait until child has finished
    } else {
        // error
    }
}

答案 2 :(得分:0)

这是我到目前为止的代码:

包括

int main(void) {
    char *line = NULL;  
    size_t linecap = 0; 
    ssize_t linelen;    

    while ((linelen = getline(&line, &linecap, stdin)) > 0){
        printf("%s\n", line);
    }

}

这显然会继续执行并打印出一行直到我按下CTRL-D。我现在用什么样的代码来执行用户键入的命令?