我正在尝试在fabric
中运行以下命令contains('~/.bash_profile', 'bind' , exact=False)
即使明确存在“绑定”字样,它仍然会返回'False'。 这是我的bash文件:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
bind '"\e[A": history-search-backward'
bind '"\e[B": history-search-forward'
为什么找不到'绑定'这个词?即使我搜索'#',它也会返回false ??