Browse Source

.bashrc: enhanced to source autocomplete stuff when available

master
Alejandro Mery 16 years ago
parent
commit
99ee81d156
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      .bashrc

+ 8
- 1
.bashrc

@ -70,4 +70,11 @@ if [ -n "$PS1" ]; then
fi
# local settings
[ -s $HOME/.bash/local.in ] && . $HOME/.bash/local.in
for x in .bash/local.in /etc/bash_completion; do
case "$x" in
/*) ;;
*) x="$HOME/$x" ;;
esac
. "$x"
done

Loading…
Cancel
Save