.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Tue, 08 Nov 2011 23:20:39 +0200
changeset 265 acd29a6e6d8d
parent 220 987a83ddd689
permissions -rwxr-xr-x
Use bash built-in 'test' command.


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: