13 lines
269 B
Bash
13 lines
269 B
Bash
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
# If not running interactively, don't do anything
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
# Allow separation so that /usr/local/bin/replicate-ssh-profiles doesn't carry local-only customizations downstream.
|
||
|
if [ -f ~/.bashrc-local ]; then
|
||
|
. ~/.bashrc-local
|
||
|
fi
|
||
|
|