gpt4 book ai didi

c++ - SSH - 输出处理

转载 作者:太空宇宙 更新时间:2023-11-04 12:59:27 26 4
gpt4 key购买 nike

我正在使用 chilkat lib 将 ssh 连接到我的树莓派。我想使用 ssh 发送命令并接收输出。问题总是我发送一个命令我收到一堆文本。

例子:

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Fri Jun 30 23:17:28 2017 from desktop-ca160hm.local
./status.sh
echo 'end'
pi@rasp:~$ ./status.sh
0
pi@rasp:~$ echo 'end'
end
pi@rasp:~$

但我只想从命令 ./status.sh 中获取 0

我已经尝试使用:

output = output.substr( output.find_first_of(str) + str.length(), 1);

其中 str 是带有命令“./status.sh”的 var,output 是带有来自 ssh 的文本的字符串。

但是 output.find_first_of(str) 总是返回 0

完整功能:

string s7c_SFTP::SendCmd(string str, bool out)
{
if (s7c_SFTP::bloked) return "blocked";
int channelNum = s7c_SFTP::ssh.QuickShell();
if (channelNum < 0) return s7c_SFTP::ssh.lastErrorText();
CkString cmd;
str = str + "\n";
cmd.append((char *)str.c_str());
cmd.append("echo 'end'\n");
if (!s7c_SFTP::ssh.ChannelSendString(channelNum, cmd.getStringAnsi(), "ansi"))
{
cout << "[WARNING] Unable to contact with the device!" << endl;
return s7c_SFTP::ssh.lastErrorText();
}
if (!s7c_SFTP::ssh.ChannelSendEof(channelNum)) return s7c_SFTP::ssh.lastErrorText();
if (!s7c_SFTP::ssh.ChannelReceiveUntilMatch(channelNum, "end", "ansi", true)) return s7c_SFTP::ssh.lastErrorText();
if (!s7c_SFTP::ssh.ChannelSendClose(channelNum)) return s7c_SFTP::ssh.lastErrorText();
if (!s7c_SFTP::ssh.ChannelReceiveToClose(channelNum)) return s7c_SFTP::ssh.lastErrorText();
if (out)
{
string output = s7c_SFTP::ssh.getReceivedText(channelNum, "ansi");
output = output.substr( output.find_first_of(str) + str.length(), 1);
cout << output.c_str() << endl; // Only for debug
return output;
}
else return "";
}

最佳答案

解决了!!!

当我将 var str 传递给函数时,我添加了 \n 来模拟回车。

当我使用 string.find_fist_of(); 计算 \n 但没有找到时,返回 0。

关于c++ - SSH - 输出处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44880883/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com