Skip to content

Instantly share code, notes, and snippets.

@mrkschan
Created November 5, 2011 09:52
Show Gist options
  • Save mrkschan/1341335 to your computer and use it in GitHub Desktop.
Save mrkschan/1341335 to your computer and use it in GitHub Desktop.
Make ~/.bash_completion.d/ activated
# Put this snippets to .bash_rc :)
# enable bash completion in interactive shells
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
# Include ~/.bash_completion.d/
BASH_COMPLETION_COMPAT_DIR=~/.bash_completion.d
. /etc/bash_completion
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment