]> arthur.barton.de Git - ConfigScripts.git/commitdiff
Search for bash_completion in /usr/local/etc
authorAlexander Barton <alex@barton.de>
Sat, 25 Aug 2012 21:06:12 +0000 (23:06 +0200)
committerAlexander Barton <alex@barton.de>
Sat, 25 Aug 2012 21:06:12 +0000 (23:06 +0200)
This is where it is stored on FreeBSD using packages, for example.

sys/bashrc

index ea8077014500a57e2bd4eecf6c78f43f3f57fc3b..0a06d80fd642a111fab2ce7748233827ec1b8748 100644 (file)
@@ -1,6 +1,6 @@
 #
 # /etc/bash.bashrc: System-wide rc file for interactive bash(1) shells.
-# Written 2003-2011 by Alexander Barton (alex@barton.de)
+# Written 2003-2012 by Alexander Barton (alex@barton.de)
 #
 
 [ -e ~/.ConfigScripts.debug ] && echo " >> /etc/bash.bashrc ..."
@@ -87,6 +87,8 @@ esac
 # Enable bash completion, if available
 [ -z "$BASH_COMPLETION" -a -r /etc/bash_completion ] \
        && source /etc/bash_completion
+[ -z "$BASH_COMPLETION" -a -r /usr/local/etc/bash_completion ] \
+       && source /usr/local/etc/bash_completion
 [ -z "$BASH_COMPLETION" -a -r /opt/homebrew/etc/bash_completion ] \
        && source /opt/homebrew/etc/bash_completion
 [ -z "$BASH_COMPLETION" -a -r /opt/local/etc/bash_completion ] \