2019-01-05 02:50:50 +01:00
|
|
|
# ~/.bash_completion - Custom bash auto completions
|
|
|
|
|
|
2019-02-19 15:47:19 +01:00
|
|
|
shopt -s nullglob
|
2019-01-05 02:50:50 +01:00
|
|
|
|
2019-02-19 15:47:19 +01:00
|
|
|
# Include all files from ~/.bash_completion.d/
|
|
|
|
|
if [[ -d ~/.bash_completion.d ]]; then
|
|
|
|
|
for f in ~/.bash_completion.d/*; do
|
|
|
|
|
[[ -f "$f" ]] && . "$f"
|
|
|
|
|
done
|
|
|
|
|
fi
|
2019-01-28 11:49:10 +01:00
|
|
|
|