aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc
blob: e46ec2d8baad55c7d503448746ab2e991c596128 (plain) (blame)
1
2
3
4
5
6
7
# Load all the POSIX-compatible functions from ~/.shrc.d; more advanced shells
# like bash will have their own functions
for shrc in "$HOME"/.shrc.d/*.sh ; do
    [ -e "$shrc" ] || continue
    . "$shrc"
done
unset -v shrc