about summary refs log tree commit diff stats
path: root/bootstrap/bashrc
diff options
context:
space:
mode:
authorCase Duckworth2021-08-23 23:07:31 -0500
committerCase Duckworth2021-08-23 23:07:31 -0500
commite292eb508413b9174684a8e75c93474a7f5351ee (patch)
treee7e59b21c817bfd1c438ef3cfc68b9021e786d7c /bootstrap/bashrc
downloadetc-e292eb508413b9174684a8e75c93474a7f5351ee.tar.gz
etc-e292eb508413b9174684a8e75c93474a7f5351ee.zip
Initial
Diffstat (limited to 'bootstrap/bashrc')
-rw-r--r--bootstrap/bashrc41
1 files changed, 41 insertions, 0 deletions
diff --git a/bootstrap/bashrc b/bootstrap/bashrc new file mode 100644 index 0000000..4966e75 --- /dev/null +++ b/bootstrap/bashrc
@@ -0,0 +1,41 @@
1# bashrc
2
3# If not running interactively, don't do anything
4[[ $- != *i* ]] && return
5
6BASH_SOURCE_FIRST=(
7 aliases
8 functions
9)
10
11BASH_SOURCE_LAST=(
12 blesh
13)
14
15for f in "${BASH_SOURCE_FIRST[@]}"; do
16 file="${XDG_CONFIG_HOME:-$HOME/.config}/bash/$f.bash"
17 [[ -r "$file" ]] && source "$file" # || echo >&2 "no '$file' found"
18done
19
20for file in "$XDG_CONFIG_HOME"/bash/*.bash; do
21 file_base="${file##*/}"
22 memq "${file_base%.bash}" "${BASH_SOURCE_FIRST[@]}" && {
23 # echo >&2 "'$file' in BASH_SOURCE_FIRST, skipping"
24 continue
25 }
26 memq "${file_base%.bash}" "${BASH_SOURCE_LAST[@]}" && {
27 # echo >&2 "'$file' in BASH_SOURCE_LAST, skipping"
28 continue
29 }
30 [[ -r "$file" ]] && {
31 # echo >&2 "Sourcing '$file'"
32 source "$file"
33 }
34 unset file_base
35done
36
37for f in "${BASH_SOURCE_LAST[@]}"; do
38 file="${XDG_CONFIG_HOME:-$HOME/.config}/bash/$f.bash"
39 [[ -r "$file" ]] && source "$file" # || echo >&2 "no '$file' found"
40 true
41done