.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 02 Jan 2012 17:57:42 +0200
changeset 278 b6adff7cbcb1
parent 220 987a83ddd689
permissions -rwxr-xr-x
Fix "ln: creating symbolic link `/home/user/.xsession': File exists".


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: