Load ~/.shrc if using SSH

This commit is contained in:
Anthony Rose 2021-02-09 16:27:08 +00:00
parent e77244cedc
commit bb5d57a034

View file

@ -14,3 +14,7 @@ export PAGER="less"
if [ -r $HOME/.profile.$(hostname -s) ]; then if [ -r $HOME/.profile.$(hostname -s) ]; then
. $HOME/.profile.$(hostname -s) . $HOME/.profile.$(hostname -s)
fi fi
if [ -n "$SSH_TTY" ]; then
. $HOME/.shrc
fi