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

前端 未结 5 909
灰色年华
灰色年华 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:35

    Without using Expect, I guess using the HERE document (<

    [vagrant@myvagrant /tmp] $ telnet_result=$(telnet `hostname` 2878 <

    and for a bad/invalid/non-open port, the same gives 1 (as expected).

    [vagrant@myvagrant /tmp] $ telnet_result=$(telnet `hostname` 287811111 <

提交回复
热议问题