linux下执行shell

阅读更多

执行shell:

 

int runCommand(string cmd, char* result=NULL, int readLen=0){
    FILE *fp;
    const char *sysCommand = cmd.data(); 
    MY_LOGE("runCommand:%s\n", sysCommand);
    if ((fp = popen(sysCommand, "r")) == NULL) { 
    	MY_LOGE("---runCommand error...\n");
        return -1;
    }
    if(result==NULL||readLen==0) {
    	MY_LOGE("---runCommand not need result...\n");
		pclose(fp);
		return 0;
    }
    if(fgets(result, readLen, fp) != NULL){ 
    	MY_LOGE("---runCommand result(%d):%s\n", strlen(result), result);
    }
    pclose(fp);
    return 0;
}

 

string cmdGetIP = "ifconfig | grep 'inet addr:' | awk '{print substr($2, 6)}'";  
runCommand(cmdGetIP, myDeviceIP.get(), 15); 

popen()函数较于system()函数的优势在于使用简单,popen()函数只返回两个值: 成功返回子进程的status,使用WIFEXITED相关宏就可以取得command的返回结果; 失败返回-1,我们可以使用perro()函数或strerror()函数得到有用的错误信息。

 

你可能感兴趣的:(linux下执行shell)