我试图获取通过libexpect输入的命令产生的输出,我对C风格的操作不是很熟练,而且我不确定如何继续。
问题在于,虽然这对于python用户来说是一个流行的程序,但我只能找到一些在C / C ++中使用libexpect的基本示例,似乎没有提到输出。
示例程序:
// g++ t.cpp -lexpect -ltcl -o t
#include <iostream>
#include <tcl8.5/expect.h>
int main(){
FILE *echo = exp_popen(const_cast<char *>("telnet google.com 80"));
std::cout << char(fgetc(echo)) << std::endl;
std::cout << std::string(80, '=') << std::endl;
char c;
do{
c = fgetc(echo);
std::cout << "'" << c << "'";
}while(c != EOF);
return 0;
}
虽然这部分有效,但它无法获得第一个字符。
答案 0 :(得分:0)
实际上,在我发布显示正确答案后,SO在旁边显示了一个链接,我想我看起来不够努力:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <tcl8.5/expect.h>
#include <errno.h>
int main()
{
char str[512];
FILE *f = exp_popen("ssh user@mybox ls -lR");
if (f==NULL)
{
printf("Failed (%s)\n", strerror(errno));
return 1;
}
while(fgets(str, sizeof(str)-1, f))
{
printf("%s", str);
}
return 0;
}
(取自How to read stdout from a FILE* created with libexpect in C++ on linux?)