C語言獲取Shell返回結果

  Linux編程時候,若是咱們須要調用shell命令或腳本一般使用system方法。如system("ls")shell

  該方法返回值爲0或-1,即成功或失敗。而有的時候咱們想要獲取shell命令執行的結果,該怎麼辦呢?編程

  咱們能夠將shell命令結果重定向到文件中,而後再讀取這個文件,如:spa

    system("ls>result.txt")code

    FILE *fp = fopen(result, "r")blog

  固然咱們也能夠直接使用管道,以下面示例:進程

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <strings.h>
#include <string.h>

char* shellcmd(char* cmd, char* buff, int size)
{
    char temp[256];
    FILE* fp = NULL;
    int offset = 0;
    int len;
    
    fp = popen(cmd, "r");
    if(fp == NULL)
    {
        return NULL;
    }

    while(fgets(temp, sizeof(temp), fp) != NULL)
    {
        len = strlen(temp);
        if(offset + len < size)
        {
            strcpy(buff+offset, temp);
            offset += len;
        }
        else
        {
            buff[offset] = 0;
            break;
        }
    }
    
    if(fp != NULL)
    {
        pclose(fp);
    }

    return buff;
}

int main(void)
{
    char buff[1024];

    memset(buff, 0, sizeof(buff));
    printf("%s", shellcmd("ls", buff, sizeof(buff)));

    return 0;
}

  

  注意:C語言調用shell命令是新建一個進程執行的,執行速度很慢,最好不要C、Shell混合編程。get

相關文章
相關標籤/搜索