rabchev / web-terminal

Web-Terminal is a terminal server that provides remote CLI via standard web browser and HTTP protocol.
MIT License
443 stars 138 forks source link

stderr and stdout don't interleave well #5

Open wmertens opened 10 years ago

wmertens commented 10 years ago

Example: type this in the shell and in web-terminal

echo 1; echo 2 >&2; echo 3

Output should be 1 2 3 but on web-terminal it's 1 3 2. I suspect this is due to buffering and I wonder if this is even fixable on NodeJS.

rabchev commented 10 years ago

It should be fixable. I will examine it as soon as possible and let you know.

Thanks.