zoukankan      html  css  js  c++  java
  • C++使用shell命令

    #include <iostream>
    #include <stdio.h>
    #include <vector>
    #include <unistd.h>
    #include <sys/types.h>


    //execute shell command
    //执行一个shell命令,输出结果逐行存储在resvec中,并返回行数
    int32_t myexec(const char *cmd, std::vector<std::string> &resvec) {
        resvec.clear();
        FILE *pp = popen(cmd, "r"); //建立管道
        if (!pp) {
            return -1;
        }
        char tmp[1024]; //设置一个合适的长度,以存储每一行输出
        while (fgets(tmp, sizeof(tmp), pp) != NULL) {
            if (tmp[strlen(tmp) - 1] == ' ') {
                tmp[strlen(tmp) - 1] = ''; //去除换行符
            }
            resvec.push_back(tmp);
        }
        pclose(pp); //关闭管道
        return resvec.size();
    }

    int main(int argc, const char * argv[]) {
       
        std::vector<std::string> *vect = new std::vector<std::string>();
        pid_t pid = getpid();
        char *cmd = new char[1024];
        sprintf(cmd, "ps -p %d -o 'pid,pcpu,rss'",pid);
        std::cout<< cmd << std::endl;
        int32_t a = myexec(cmd, *vect);
       
        std::cout<< a << std::endl;
       
        int i = 0;
        int count = vect->size();
        for (; i < count; i++) {
            std::cout<< (*vect)[i] <<std::endl;
        }
       
        return 0;
    }

    include <iostream>
    #include <stdio.h>
    #include <vector>
    #include <unistd.h>
    #include <sys/types.h>


    //execute shell command
    //执行一个shell命令,输出结果逐行存储在resvec中,并返回行数
    int32_t myexec(const char *cmd, std::vector<std::string> &resvec) {
        resvec.clear();
        FILE *pp = popen(cmd, "r"); //建立管道
        if (!pp) {
            return -1;
        }
        char tmp[1024]; //设置一个合适的长度,以存储每一行输出
        while (fgets(tmp, sizeof(tmp), pp) != NULL) {
            if (tmp[strlen(tmp) - 1] == ' ') {
                tmp[strlen(tmp) - 1] = ''; //去除换行符
            }
            resvec.push_back(tmp);
        }
        pclose(pp); //关闭管道
        return resvec.size();
    }

    int main(int argc, const char * argv[]) {
       
        std::vector<std::string> *vect = new std::vector<std::string>();
        pid_t pid = getpid();
        char *cmd = new char[1024];
        sprintf(cmd, "ps -p %d -o 'pid,pcpu,rss'",pid);
        std::cout<< cmd << std::endl;
        int32_t a = myexec(cmd, *vect);
       
        std::cout<< a << std::endl;
       
        int i = 0;
        int count = vect->size();
        for (; i < count; i++) {
            std::cout<< (*vect)[i] <<std::endl;
        }
       
        return 0;
    }

  • 相关阅读:
    英语影视台词---三、Cinema Paradiso
    英语影视台词---二、Inception
    智课雅思短语---二、exert positive/ negative effects on…
    MVC 编程模型及其变种
    四:redis的sets类型
    HDU 2048 号码塔(DP)
    删除句子UITableView额外的底线和切割线
    css+html菜单适应性学习的宽度
    删RAC中间ASM和LISTENER 资源的正确方法
    联合县城市,采用ajax,而使用ul模拟select下拉
  • 原文地址:https://www.cnblogs.com/xubin-123/p/4307274.html
Copyright © 2011-2022 走看看