我正在用Linux Debian中的TCL和Expect编写Telnet自动化脚本。
在Telnet会话或* .tcl脚本(send "command\r"
)甚至send "command\n"
内按Return键会导致在最后使用 ^ M (Ctrl + M)发送行。当然,远程主机将这些命令视为非法。在打开连接之前尝试telnet
set crlf
,在连接时尝试mode line
,但这没有任何效果。
使用Puttys GUI,我已启用this选项,按Return而不是 ^ M 发送新行。工作良好。如何为telnet
配置此选项?
非常感谢帮助!
修改
stty -a
speed 38400 baud; rows 24; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff
-iuclc -ixany -imaxbel -iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
stty
(启用stty icrnl
)
speed 38400 baud; line = 0;
-brkint -imaxbel
答案 0 :(得分:1)
命令“stty”可能会更改您的行尾设置。
首先,看看你目前的设置:
stty -a
然后尝试其中一个选项。
stty ocrnl
这应该将回车转换为换行符。
您可以使用减号撤消此设置:
stty -ocrnl
如果这不起作用,请查看onlret或onlcr。
如果没有确切的环境,很难对此进行测试。