执行Execv()而不是execvp()

时间:2014-12-03 23:47:23

标签: c linux shell exec

我想学习如何实现execv()而不是execvp()

我有execvp()的代码,我尝试将其转换为execv(),但我失败了,因为我找不到命令的路径。 哪个命令获取我认为的文件的路径,但我如何将其实现到execv()

我想转换此代码:

if ((pid = fork()) < 0) {     /* fork a child process           */
        printf("*** ERROR: forking child process failed\n");
        exit(1);
}
else if (pid == 0) {          /* for the child process:         */
    printf("hophop");
    if (execv("/usr/bin/ls"+*args[0], args) < 0) {     /* execute the command  */
        printf("*** ERROR: exec failed\n");
        exit(1);
    }
}
else {                                  /* for the parent:      */
    while (wait(&status) != pid)       /* wait for completion  */
        ;
}
/** the steps are:
     (1) fork a child process using fork()
     (2) the child process will invoke execvp()
     (3) if background == 0, the parent will wait,
     otherwise it will invoke the setup() function again. */

1 个答案:

答案 0 :(得分:1)

execvp在PATH环境变量的目录列表中搜索命令。

如果要复制execvp,getenv(&#34; PATH&#34;)的功能,请将字符串拆分为各个目录(冒号分隔的字符串),然后搜索列表中的每个目录,直到找到可执行文件和execv()它。

如果你的可执行文件名已经是以/字符开头的绝对路径,当然可以跳过搜索部分;在这种情况下,execvp等同于execv。