saving uncommitted changes in /etc prior to emerge run
This commit is contained in:
parent
b1e7a621ea
commit
56433ba482
15
bash/bashrc.d/bash_completion.sh
Normal file
15
bash/bashrc.d/bash_completion.sh
Normal file
@ -0,0 +1,15 @@
|
||||
# Check for interactive bash and that we haven't already been sourced.
|
||||
if [ -n "$BASH_VERSION" -a -n "$PS1" -a -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
|
||||
|
||||
# Check for recent enough version of bash.
|
||||
if [ ${BASH_VERSINFO[0]} -gt 4 ] || \
|
||||
[ ${BASH_VERSINFO[0]} -eq 4 -a ${BASH_VERSINFO[1]} -ge 1 ]; then
|
||||
[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" ] && \
|
||||
. "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion"
|
||||
if shopt -q progcomp && [ -r /usr/share/bash-completion/bash_completion ]; then
|
||||
# Source completion code.
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
fi
|
||||
fi
|
||||
|
||||
fi
|
Loading…
Reference in New Issue
Block a user