.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sat, 29 Oct 2011 17:34:39 +0300
changeset 254 8963bce11ed5
parent 220 987a83ddd689
permissions -rwxr-xr-x
Start loop from 1st index as 0th index point to command name.


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: