让 telnet 在一行中执行单个命令

发布于 2024-10-30 06:56:59 字数 185 浏览 1 评论 0原文

嘿,我可以使用“telnet localhost 4242”登录telnet,现在我想执行一个命令“show network”。

我怎样才能在一行中做到这一点?

类似的东西

$ telnet localhost 4242 <- "show network"

woa 这里是我想要的输出

hey i can login into telnet with "telnet localhost 4242" now i want to execute a single command "show network".

How can i do this in one line ?

something like that

$ telnet localhost 4242 <- "show network"

woa here the output i want

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

憧憬巴黎街头的黎明 2024-11-06 06:56:59

我发现 expect 完全按照我的意愿去做,等待某个输出,然后采取行动它:

expect << EOF
spawn telnet localhost 4242
expect -re ".*>"
send "show network\r"
expect -re ".*>"
send "exit\r"
EOF

I found expect to do exactly what i want, wait for a certain output and then act upon it:

expect << EOF
spawn telnet localhost 4242
expect -re ".*>"
send "show network\r"
expect -re ".*>"
send "exit\r"
EOF
猫瑾少女 2024-11-06 06:56:59

如果您不需要登录或执行任何操作,您可以使用“此处文档”,如下所示:

telnet localhost 4242 << EOF
show network
EOF

If you don't have to log in or anything, you can use a "here document" like this:

telnet localhost 4242 << EOF
show network
EOF
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文