Auto exit Telnet command back to prompt without human intervention ^] quit close exit code 1

前端 未结 5 911
灰色年华
灰色年华 2020-12-31 20:12

I\'m running telnet command on a host for a given port (which is open), it returns 0 (success).

For trying telnet manually, I type the following comman

5条回答
  •  醉酒成梦
    2020-12-31 20:34

    Here is the clean way to do it

    echo -n | telnet `hostname` 2878
    

    For more info on this behavior see this link

提交回复
热议问题