Executing a command causes multiple outputs on the server
Bugzilla Link | 512860 |
Status | NEW |
Importance | P3 normal |
Reported | Mar 01, 2017 03:24 EDT |
Modified | Mar 01, 2017 03:24 EDT |
Version | 3.7 |
Reporter | Sebastian Zartner |
Description
When you enter a command and hit Enter, the command line is forwarded four times. Some commands like 'ls' even cause different unexpected outputs.
I.e. when you hit Enter, you first get the expected output, but then you get four times the input line as output, looking like this:
user@server:/path/to/directory$
user@server:/path/to/directory$
user@server:/path/to/directory$
user@server:/path/to/directory$
When executing 'ls', the output looks like this:
file1 file2 file3
user@server:/path/to/directory$
/path/to/directory>
user@server:/path/to/directory$
user@server:/path/to/directory$
user@server:/path/to/directory$
user@server:/path/to/directory$
Expected output is:
file1 file2 file3
user@server:/path/to/directory$
RSE version is 3.7.2 delivered with Neon.2 (4.6.2).
Sebastian