Details
Description
Karaf SSH shell access: Do not buffer output from shell command.
An easy way to reproduce the issue is
ssh -v -p 8101 karaf@localhost 'x=0; while { %(x < 10) } { echo $x;sleep 2; %(x+=1) }'
with the ssh client receiving the output only once the while loop ends.