2013-03-24 123 views
0

我正在嘗試製作一個程序,該程序獲取2個文件到main的程序,並調用linux的cmp命令來比較它們。用C程序調用linux命令cmp

如果他們平等的,我想回到2,如果他們是不同的,1

#include <stdio.h> 
#include <unistd.h> 
#include <sys/types.h> 
#include <sys/wait.h> 

int main(int argc, const char* argv[]) 
{ 
pid_t pid; 
int stat; 

//child process 
if ((pid=fork())==0) 
{ 
    execl("/usr/bin/cmp", "/usr/bin/cmp", "-s",argv[1], argv[2], NULL); 
} 
//parent process 
else 
{ 
    WEXITSTATUS(stat); 
    if(stat==0) 
     return 2; 
    else if(stat==1) 
     return 1; //never reach here 
} 
printf("%d\n",stat); 
return 0; 
} 

出於某種原因,如果文件是相同的,我在回國2做成功了,但如果他們'不同,它不會進入if(stat == 1),但返回0. 爲什麼會發生這種情況?我檢查通過終端的文件cmp確實返回1,如果他們不同,那麼爲什麼這不起作用?

+1

有一個宏,'WEXITSTATUS'用於獲取返回值。還要確保cmp在錯誤時返回一個,而不是「非零」。 – Aneri 2013-03-24 10:44:41

+0

錯誤時返回> 1,文件不同時返回1。爲什麼? – Jjang 2013-03-24 10:45:46

+0

P.S改爲WEXITSTATUS,現在總是返回2(stat == 0總是) – Jjang 2013-03-24 10:47:40

回答

2

做這樣的:

//parent process 
else 
{ 
    // get the wait status value, which possibly contains the exit status value (if WIFEXITED) 
    wait(&status); 
    // if the process exited normally (i.e. not by signal) 
    if (WIFEXITED(status)) 
    // retrieve the exit status 
    status = WEXITSTATUS(status); 
    // ... 
1

在您的代碼:

WEXITSTATUS(&stat); 

嘗試提取從一個指針狀態,但WEXITSTATUS()需要int作爲參數。

必須是:

WEXITSTATUS(stat);