0

我安装了 grml 的配置文件,这些文件中的某些内容似乎导致多行命令在执行之前重新回显自己。例如

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

this
that
EOFthis
that
user@machine ~ % 

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

你们知道如何禁用回声,这样上面就可以了

...
\`heredoc> EOF

this
that
user@machine ~ % 

(有或没有那个空行)

4

1 回答 1

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

(从这里),我无法复制这个问题。我试图在有和没有用户配置的情况下进行复制(~/.zshrc.local在上述配置中):

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

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

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

于 2013-08-03T08:59:25.340 回答