我使用以下代码来获取使用JSCH库的命令输出
public SSHOutputBean executeCommand(String cmd, int timeOut) {
SSHOutputBean outputBean=new SSHOutputBean();
Channel ch=null;
try {
ch= this.session.openChannel("exec");
ChannelExec chExec= ((ChannelExec) ch);
chExec.setErrStream(System.err);
chExec.setInputStream(null);
chExec.setCommand("reset;"+cmd);
chExec.connect();
outputBean.setInputStream( chExec.getInputStream());
BufferedReader brInput = new BufferedReader(new InputStreamReader(outputBean.getInputStream()));
outputBean.setErrorStream(chExec.getErrStream());
BufferedReader brError = new BufferedReader(new InputStreamReader(outputBean.getErrorStream()));
while (true) {
try {
String result = brInput.readLine();
if (result == null)
break;
outputBean.getOutput().append(result+"\n");
} catch (Exception ex) {
ex.printStackTrace();
break;
}
}
while (true) {
try {
String result = brError.readLine();
if (result == null)
break;
outputBean.getError().append(result+"\n");
} catch (Exception ex) {
ex.printStackTrace();
break;
}
}
if (chExec.isClosed()) {
outputBean.setExitStatus(chExec.getExitStatus());
}
chExec.disconnect();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSchException e){
e.printStackTrace();
}
finally
{
if(ch!=null)
ch.disconnect();
}
return outputBean;
}
问题是,如果客户端上的bashrc文件正在控制台上打印,那么每次打开ChannelExec并运行命令时;命令执行时给出的输出包含命令的输出以及bashrc输出。我只想输出命令,而不是bashrc打印。
例如,
如果我在.bashrc文件中放入以下代码
回复“欢迎用户”
如果我使用jsch运行命令,
SSHOutputBean sshOutputBean = ssh.executeCommand(“uptime”);
然后输出是,
欢迎用户(.bashrc输出)
13:15:10 up 2天,1:53,8位用户,平均负载:0.14,0.06,0.06 (实际命令输出)
但我想要输出,
13:15:10 up 2天,1:53,8位用户,平均负载:0.14,0.06,0.06 (实际命令输出)
请帮忙!
答案 0 :(得分:0)
我假设您不能简单地将.bashrc更改为安静。如果您想要隔离作为命令结果的输出,并在此之前忽略任何内容,那么Exec频道可能不是您最好的选择。当您运行该命令时,您的流将包含所有输出。
您可以尝试使用shell。您可以让它连接并让您的流读取所有初始输出(即"欢迎用户"或.bashrc文件的其他输出)。然后刷新流,然后执行命令并读入流,只看到命令本身的输出。
或者,您可以使用channelExec进行解决。使用channel.setEnv(name,value)将PS1变量设置为包含一些分隔字符串。例如:
channel.setEnv("PS1","Command Starts Here::")
然后你可以在你的分界字符串上解析你的输出" Command Starts Here ::"