You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
Plaintext
19 lines
393 B
Plaintext
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
COMPLETION_DIR=/usr/local/etc/bash_completion.d/
|
||
|
|
||
|
if [ -d "$COMPLETION_DIR" ]; then
|
||
|
for i in $(ls "$COMPLETION_DIR"); do
|
||
|
file="$COMPLETION_DIR/$i"
|
||
|
if [ -r $file ]; then
|
||
|
source $file
|
||
|
fi
|
||
|
unset file
|
||
|
done
|
||
|
unset i
|
||
|
fi
|
||
|
|
||
|
[[ -f /usr/local/etc/bash_completion ]] && source /usr/local/etc/bash_completion
|
||
|
|
||
|
unset COMPLETION_DIR
|