.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Wed, 28 Sep 2011 18:21:39 +0300
changeset 220 987a83ddd689
parent 216 27e5bda72c38
permissions -rwxr-xr-x
Fix issue with empty/non-exist directory.


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: