-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbashrc
90 lines (72 loc) · 2.35 KB
/
bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
#
# Copyright (C) 2013, 2014 LoVullo Associates, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##
declare -r confdir=~/.bash.d
declare -r omitfile="$confdir/.omit"
declare -r enablefile="$confdir/.enable"
# create empty omitfile if one does not already exist (first run?)
test -e "$omitfile" || touch "$omitfile"
test -e "$enablefile" || touch "$enablefile"
##
# Map a file into an associative array, line by line
#
# Similar to `mapfile` builtin, but associative.
#
_assocmap()
{
local -r dest=$1 file="$2"
# place each line into an associative array
# warning: this makes no attempt to protect against arbitrary code
# execution, since we'll be sourcing scripts anyway
while read line; do
eval "$dest[$line]=1"
done < "$file"
}
##
# Determines whether the current module is explicitly enabled
#
# This is only important for modules that care to check this flag; many are
# enabled by default by simply omitting this check, and instead must be
# explicitly omitted.
#
enabled()
{
test $_cur_enabled -eq 1
}
declare -i _cur_enabled=0
main()
{
local -A omits enables
# load omits and enables into associative arrays
_assocmap omits "$omitfile"
_assocmap enables "$enablefile"
readonly omits enables
# source all non-omitted configuration files
local conf
for conf in "$confdir"/*; do
# grab the name without its leading path or numeric prefix
local name="${conf#*/*_}"
# ignore if omitted; otherwise, source the script
test "${omits[$name]}" != 1 || continue
# determine if this module has been explicitly enabled (not all need to be;
# this allows testing using the `enabled` function above)
_cur_enabled="${enables[$name]:-0}"
. "$conf"
done
}
main "$@"
[ -r ~/.bashrc.local ] && source ~/.bashrc.local