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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -