2022-04-07 19:41:00 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# ~/.bashrc
|
|
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
2022-04-09 08:13:45 -05:00
|
|
|
# source shared config
|
|
|
|
for shared in ~/skynet/shell/bashrc.d/*.sh; do
|
|
|
|
source "$shared"
|
|
|
|
done
|