Bash problems with ubuntu 12.04 bookmark

I had a problem with tab completion which I cannot solve. In particular, whenever I try to tab through a directory, the name of the completed directory appears with a space following it, and not with a slash to complete the rest. eg

~$ python ~/sof 

tab-terminates before

 ~$ python ~/software<space> 

Instead

 ~$ python ~/software/ 

Interestingly, this does not happen with cd , but with everything else.

+8
linux bash tab-completion
source share
1 answer

This is apparently a known bug. Removing /etc/bash_completion.d/acroread.sh solved the problem.

+9
source share

All Articles