Answers:
放
set disable-completion on
输入~/.inputrc
并重新启动shell。它将完全禁止完成。
~/.inputrc
文件中包括该行,请将其添加到适当的Shell启动文件中:bind 'set disable-completion on'
~/.bashrc
(如果它不使用登录shell,则添加source ~/.bashrc
到~/.bash_profile
)。
丹尼斯的解决方案
bind 'set disable-completion on'
也可以在Bash中即时完成。您无需将其放在.bashrc中。
Musta的解决方案(bash --noediting)有效,但也禁用了命令行编辑。
另一种方法是
bind -u complete
(与“ complete”相关联的未设置键绑定)
http://www.gnu.org/software/bash/manual/bashref.html,4.2 Bash内置命令。