简体   繁体   English

如何在用 C 编写的 shell 中从命令行执行程序

[英]How to execute a program from command line in a shell written in C

Im creating a small shell in C programming and if the command is start, it does the following start program [extra parameters] “program” is the program to execute.我在 C 编程中创建了一个小 shell,如果命令是 start,它会执行以下启动程序 [额外参数] “程序”是要执行的程序。 the argument starts with a “/” (such as /usr/bin/xterm, it should interpret it as a full path. Otherwise, its path starts from the current directory.参数以“/”开头(例如/usr/bin/xterm,它应该将其解释为完整路径。否则,其路径从当前目录开始。

it can have optional “parameters”.它可以有可选的“参数”。 It uses fork() + exec() to start the program with the corresponding parameters, and waits until the program terminates (use the waitpid() call).它使用 fork() + exec() 以相应的参数启动程序,并等待程序终止(使用 waitpid() 调用)。 For example例如

 **start /usr/bin/xterm –bg green**

would bring up a terminal with a green background.会调出一个绿色背景的终端。 The prompt would not return until the terminal is closed.直到终端关闭,提示才会返回。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <dirent.h>
#include <errno.h>
#include <signal.h>
#include <sys/wait.h>

// max # args
#define MAX_ARGS 64
// token sparators
#define SEPARATORS " \t\n"

int main (int argc, char ** argv)
{
    char buf[1024];
    char * args[MAX_ARGS];
    char ** arg;
    char *** arguments = malloc(3 * sizeof(char**));
    __pid_t pid;
    int status;
    
    while (1)
    {
        printf("#");
        if (fgets (buf, 1024, stdin ))
        {
            
            arg = args;
            *arg++ = strtok(buf, SEPARATORS);  // tokenize input
            while ((*arg++ = strtok(NULL, SEPARATORS)));
            if (args[0])
            {
                //#byebye command, exist the while loop.
                if (!strcmp(args[0], "byebye")) {
                    break;
                } 
                
                if (!strcmp(args[0], "whereami")) {
                          // arg string input from user matches whereami
                          char cwd[1024];
                          chdir("/path/to/change/directory/to");
                           getcwd(cwd, sizeof(cwd));
                            printf("%s\n", cwd);   
                             continue;
                  }

                   if (!strcmp(args[0], "start")) {
                       if (args[1]) 
                        {
                            arguments[0] = malloc(16 * sizeof(char*));
                             int argument_num = 2;
                              while (args[argument_num]) {
                                          // grab all the parameters
                                          arguments[0][argument_num - 2] = malloc(strlen(args[argument_num]) * sizeof(char));
                                       strcpy(arguments[0][argument_num - 2], args[argument_num]);
                                    argument_num++;
                               }

                           arguments[0][argument_num] = NULL;

                             if (0 == (pid = fork())) {
                                  // child process
                                 if (-1 == execve(args[1], (char **)arguments[0], NULL)) {
                                        fprintf(stdout, "child process execve failed [%m]\n");
                                        break;
                                     }
                               }
                             // wait for child
                             while (0 == waitpid(pid, &status, WNOHANG)) {}
                                                                                  
                              free(arguments[0]);
                          }

                                 continue;
                       }

     
  
                arg = args;
                while (*arg) fprintf(stdout, "%s ", *arg++);
                fputs ("\n", stdout);
            }
        }
    }
    return 0;
} 

For some reason when I test the code it says file or directory not found出于某种原因,当我测试代码时,它说找不到文件或目录

The code works fine.该代码工作正常。 If you get directory not found for start /usr/bin/xterm –bg green then it's possibly because /usr/bin/xterm does not exist.如果您的start /usr/bin/xterm –bg green目录未找到start /usr/bin/xterm –bg green则可能是因为/usr/bin/xterm不存在。 You're on a Mac?你在 Mac 上?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM