aboutsummaryrefslogtreecommitdiff
path: root/sh/shinit
blob: fb72cd1478d3f91e6bb817d0ba61026549787dc6 (plain) (blame)
1
2
3
4
5
6
7
# If the shell is interactive, and ~/.shrc exists, source it
case $- in
    *i*)
        if [ -f "$HOME"/.shrc ] ; then
            . "$HOME"/.shrc
        fi
esac