Created
November 5, 2011 09:52
-
-
Save mrkschan/1341335 to your computer and use it in GitHub Desktop.
Make ~/.bash_completion.d/ activated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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