search for: 8kfile

Displaying 1 result from an estimated 1 matches for "8kfile".

Did you mean: mkfile
2001 Aug 02
0
Bugs: SSH sometimes failing to report exit-status and more
...|| echo $i failed; done 1 failed 3 failed 5 failed 8 failed 10 failed 12 failed 18 failed 19 failed [sturles at ulrik]~ $ for i in `seq 1 20`; do ssh -n pat cat 4kfile > /dev/null || echo $i failed; done 10 failed [sturles at ulrik]~ $ for i in `seq 1 20`; do ssh -n pat cat 8kfile > /dev/null || echo $i failed; done [sturles at ulrik]~ $ If run with -v, the difference between correctly reporting and wrong reporting instances, is the following lines: Correct: debug1: client_input_channel_req: channel 0 rtype exit-status reply 0 debug1: Exit status 0 Wrong: debu...