Etch になってからの Debian は ~/ (home directory) で tab 押したらを勝手に path を展開してまう

.bashrc の 下記の部分を

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi

下記へ変更したら一応展開はされなくなった。

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
#if [ -f /etc/bash_completion ]; then
#    . /etc/bash_completion
#fi

/etc/bash_completion で "~/ を入力していて tab 押した"って部分を特定してそこだけ実行しないようにする事がしたいところだが一応したい事が出来たので、OK かなと思いました。


mimic28号でした。