使用execv执行更少?

时间:2012-05-26 05:48:36

标签: c unix exec pipe

我有以下c代码。我想通过调用execv()以更少的方式显示我的文件 然而以下似乎永远不会奏效。程序终止并注意弹出。

#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
int main(void){
  int pid; 
  if(pid=fork()>0){
      //read in from stdin and pass to pipe
   }else if(pid==0){
      //read from pipe
      //write to out.txt
      //everything up to here works fine

      char* para[]={"less","/Desktop/out.txt"};
      execv("/bin/less",para);
   }
   return 0;
}

2 个答案:

答案 0 :(得分:1)

(原始代码包含execv("bin/less", para);。)除非当前目录是根目录/,或者除非子目录less中有程序./bin/less,否则那么你的一个问题就是可执行文件名中可能存在拼写错误。这假设程序是/bin/less而不是/usr/bin/less。您甚至可以使用execvp()对程序进行基于PATH的搜索。

还有一个问题:您需要包含一个空指针来标记参数列表的结尾。

最后,您可以在execv()返回后打印错误消息。它返回的这一事实告诉你它失败了。

#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>

int main(void)
{
    int pid;
    if ((pid = fork()) != 0)
    {
        // read in from stdin and pass to pipe
        // Need to test for fork() error here too
    }
    else
    {
        // read from pipe
        // write to out.txt
        // everything up to here works fine

        char *para[] = { "/bin/less", "Desktop/out.txt", 0 };
        execv(para[0], para);
        fprintf(stderr, "Failed to execute %s\n", para[0]);
        exit(1);
    }
    return 0;
}

或者:

        char *para[] = { "less", "Desktop/out.txt", 0 };
        execvp(para[0], para);
        fprintf(stderr, "Failed to execute %s\n", para[0]);

关于管道的代码中的评论令人费解,因为除了评论之外没有管道的迹象。就目前而言,less将读取它被告知阅读的文件。请注意,如果输出未转到终端,less将不会对其输出进行分页。由于我们看不到I / O重定向,因此我们必须假设less将忽略程序尝试写入的任何内容,并且不会将任何数据发送回程序。

答案 1 :(得分:1)

char* para[]={"less","/Desktop/out.txt"};
execv("/bin/less",para);

execv如何知道何时停止读取参数?

我想如果你把代码放在那里来处理execv()返回错误你已经找到了。你也没有测试fork()中的错误。