Thanks a lot for your responce. Now we are getting the output of remote
project in our console.
But now the output comes as command prompt (of unix) followed by required
output.
On going through the code we have observed that in the method
MyHostShellProcessAdapter.shellOutputChanged() we have the following code:
if (trimLine.endsWith(this.pattern1)) {
if (!trimLine.equals(this.pattern1)) {
// We need to output part of line
int pos = line.indexOf(this.pattern1);
outputStream.write(line.substring(0, pos).getBytes());
outputStream.write('\n');
outputStream.flush();
}
}
In the second if condition the line from 0 to pos is written to
outputstream. Hence the command prompt appears in output, which we don't
require. We want the output between the patterns only to be displayed.
Can we have the second if condition removed in the next release?