11 lines
207 B
Bash
11 lines
207 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# ~/.bashrc
|
|
#
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
# source shared config
|
|
for shared in ~/skynet/shell/bashrc.d/*.sh; do
|
|
source "$shared"
|
|
done
|