.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 07 Nov 2011 20:32:07 +0200
changeset 263 9a0fc755c9f9
parent 220 987a83ddd689
permissions -rwxr-xr-x
Make '-C' and '-f' option work together.


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: