.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Fri, 14 Oct 2011 15:24:08 +0300
changeset 226 97139da73273
parent 220 987a83ddd689
permissions -rwxr-xr-x
Enable python statement readline completion and readline history for interactive Python .


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: