我正在尝试在emacs中使用ansi-term(配置为tcsh shell)。我看到显示换行符的一些问题。如果我从终端(ansi-term)尝试以下操作,我会得到正确的输出:
myterm > echo "Line1"; echo "Line2"; echo "Line3";
Line1
Line2
Line3
myterm >
但是如果我尝试在shell脚本中添加相同的行并尝试从ansi-term执行脚本,那么输出错误
脚本:(测试)
#!/usr/bin/env tcsh
echo "Line1"; echo "Line2"; echo "Line3";
运行脚本(测试):
myterm > ./test
Line1
Line2
Line3
myterm >
注意:/ usr / bin / env tcsh指向正确的shell(它与我在调用ansi-term时使用的shell相同)。从gnome-terminal执行脚本也会显示正确的输出。 我也试过设置以下变量,但它没有解决我的问题:
(set-terminal-coding-system 'utf-8-unix)
(setq default-process-coding-system '((utf-8-unix . utf-8-unix)))
答案 0 :(得分:15)
如果在脚本中设置stty onlcr
,您将获得所需的行为。
将命令翻译成英语可能会说: s 等 tty 至 o 输出 n ew l ine c 到达 r eturn和换行符。
这当然是一种解决方法,因为默认情况下应该设置此选项。我可以从您在评论中提到的stty -a
输出中看到 在您的ansi-term中运行的tcsh中设置。我怀疑ansi-term和你的shell脚本行为不同的一个可能原因是由于term.el中的以下行.el
(apply 'start-process name buffer
"/bin/sh" "-c"
(format "stty -nl echo rows %d columns %d sane 2>/dev/null;
if [ $1 = .. ]; then shift; fi; exec \"$@\""
term-height term-width)
".."
command switches)))
上面的stty
命令实际上设置onlcr
两次,因为复合选项-nl
转换为icrnl -inlcr -igncr onlcr -ocrnl -onlret
和{{ 1}}选项转换为
sane
另一个可能的原因:对于非登录shell,tcsh启动时只会 读取cread -ignbrk brkint -inlcr -igncr icrnl -iutf8 -ixoff -iuclc -ixany imaxbel 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
以及/etc/csh.cshrc
或~/.tcshrc
,但对于登录shell它会读取许多其他文件,包括~/.cshrc
/etc/csh.login
或~/.history
的值 - 您应该查阅man page以获取完整详细信息,包括其读取内容的确切顺序。