grml的zsh config - 多行命令重新回显

时间:2013-04-20 13:25:40

标签: zsh zshrc

我安装了grml的配置文件,这些文件中的某些东西似乎正在造成 多行命令在执行之前重新回显自己。例如

user@machine ~ % cat << EOF
\`heredoc> this 
\`heredoc> that
\`heredoc> EOF

this
that
EOFthis
that
user@machine ~ % 

我查看了已设置的选项,但似乎没有一个是负责任的。

你们知道如何禁用这种回声,以便上述只是

...
\`heredoc> EOF

this
that
user@machine ~ % 

(有或没有该空行)

1 个答案:

答案 0 :(得分:0)

使用抓取的配置:

# IMPORTANT: please note that you might override an existing
# configuration file in the current working directory! =>
wget -O .zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
# Optionally also grab the user configration:
# wget -O .zshrc.local  http://git.grml.org/f/grml-etc-core/etc/skel/.zshrc

(来自here),我无法复制这个问题。我尝试使用和不使用用户配置(在上面的配置中~/.zshrc.local)复制:

simont@charizard ~ % cat << EOF
\`heredoc> this
\`heredoc> that
\`heredoc> EOF
this
that
simont@charizard ~ %

如果没有进一步的信息,很难为这个问题提供确凿的答案。要完全回答,需要做一些事情:

我建议使用zsh -f加载一个新的shell,然后慢慢添加配置的各个部分,直到您复制此行为。