vote up 0 vote down star

My inputrc is empty. I use Bash.

Problem: I am at

cd $te

I press Tab, and I get

cd \$test

How can you have the tab completion without the backslash in Bash?

flag

2  
Do you maybe have a file in the current directory named "$test" ? – Rick Copeland Apr 21 at 21:40
I see nothing that I would call a "flash" (in any direction). Could you elaborate? – dmckee Apr 21 at 21:46
I think he meant slash. – marcog Apr 21 at 21:47
@marcog: Ah. Make sense, and I think Rick wins... – dmckee Apr 21 at 21:51

4 Answers

vote up 0 vote down check

I found another way too to solve the problem partially.

  1. update you Bash to Bash 4.
  2. put autocd on by putting the following to your .bashrc

    shopt -s autocd

Then, you can avoid the backslash by not typing cd when you change directory.

link|flag
vote up 0 vote down

I finally moved to Zsh. It solved the problem for me.

link|flag
vote up 1 vote down

The problem seems to be in MacPorts.

It has an old version of Bash_completion.

The newest version has the following in

complete -o nospace -F _cd cd

while I have the following after executing the command

$complete | grep cd
complete -o filenames -o nospace -F _cd cd

I sent a comment to MacPorts' irc to update bash-completion @20060301 (sysutils).

link|flag
vote up 4 vote down

You don't. In Bash, a $ is used in the retrieval of variables. For example:

SWEETVAR='hi'
echo $SWEETVAR

Because of this, a $ in the name of a file or folder must be escaped, else it is interpreted as a var.

link|flag
@Allyn: How can you have a var instead of a system var in Bash, such that you do not need the backslash for escaping. – Masi Apr 22 at 16:03
You apparently mean with a var an alias. – Masi Apr 26 at 17:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.