Telnet

支持多行的 Linux telnet 客戶端

  • July 18, 2017

我需要將這樣的數據發佈到開放的 telnet

{
 "context" : "50EF2767",
 "data" : {
   "user_status" : "invisible"
 },
 "command" : "setStatus"
}

數據是多行的。我無法複製粘貼它,因為 telnet 將新行視為 Enter。

我試過http://telnet-online.net/它工作正常 剝離新行

但我需要這個用於本地主機。

是否有任何 telnet 客戶端或任何方式允許發布多行數據?

試試 netcat ( nc)。有關如何使用它的範例,請參閱http://www.thegeekstuff.com/2012/04/nc-command-examples/?utm_source=feedburner 。

引用自:https://unix.stackexchange.com/questions/379209