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)))
当然这是一种解决方法,因为默认情况下应该设置此选项.我可以从你的评论中给出的stty -a的输出中看到它是在你的ansi-term中运行的tcsh中设置的.我怀疑ansi-term和你的shell脚本表现不同的一个可能原因是由于term.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 -onlretand sane选项转换为
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
另一个可能的原因:对于非登录shell,tcsh只会在启动时读取/etc/csh.cshrc和〜/ .tcshrc或〜/ .cshrc,但对于登录shell,它会读取包括/ etc /在内的许多其他文件csh.login~ / .history或$histfile的值 – 您应该查阅man page以获取完整的详细信息,包括它读取内容的确切顺序.