Fabric 'contains' not finding text properly -
i trying run following command in fabric
contains('~/.bash_profile', 'bind' , exact=false)
it keeps returning 'false' when words 'bind' present. here bash file:
# .bash_profile # aliases , functions if [ -f ~/.bashrc ]; . ~/.bashrc fi # user specific environment , startup programs path=$path:$home/bin export path bind '"\e[a": history-search-backward' bind '"\e[b": history-search-forward'
why unable find words 'bind'? when search '#' returns false??
Comments
Post a Comment