.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 17 Oct 2011 22:30:59 +0300
changeset 228 b5a57a7abe40
parent 220 987a83ddd689
permissions -rwxr-xr-x
Fix PS1 which cause of http://code.google.com/p/mintty/issues/detail?id=296 (unescaped non-printable chars).


if [[ -s ~/.bash_completion.d ]]; then
  for f in ~/.bash_completion.d/* ~/.bash_completion.d/.*; do
    . $f
  done
fi

# Local variables:
# mode: shell-script
# End: