这是一个终端命令:
awk '/^Mem/ {print $4}' <(free -m)
这是我的代码:
class CSystemInfo{
public:
std::string free_ram(){
std::string s;
FILE *in;
char buff[512];
//here is a prepared string (but with an error)
if(!(in = popen("awk '/^Mem/ {print $4 \"\\t\"}' <(free -m)","r"))){
return "";
}
while(fgets(buff, sizeof(buff), in)!=NULL){
cout << s;
s=s+buff;
}
pclose(in);
return s;
}
};
CSystemInfo info;
std::string ram = info.free_ram();
cout << ram;
上面的代码在运行时返回此消息:
sh: 1: Syntax error: "(" unexpected
如何放置“ /”符号,此命令才能正常运行?
解决方法:
您的问题不在C中.您正在使用popen调用命令,而popen在不支持<()语法的sh shell中运行命令,而在终端中,您具有bash,zsh或任何支持<()语法的shell . 编辑:更好的选择!使用管道!
popen("free -m | awk ...")
原始答案,不起作用!:尝试在popen中调用bash:
bash -c "awk '/^Mem/ {print $4}' <(free -m)"
在代码中:
popen("bash -c \"awk '/^Mem/ {print $4}' <(free -m)\"")