.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Wed, 26 Oct 2011 11:50:18 +0300
changeset 242 a13e9cd16022
parent 220 987a83ddd689
permissions -rwxr-xr-x
Add completion for 'make'.


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: