aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/ksh.sh
blob: e95e6d3f9a7e3f3006c273b8013e05f61b560e52 (plain) (blame)
1
2
3
4
5
6
7
8
# If we're running some kind of ksh, we'll need to source its specific
# configuration if it was defined or if we can find it
case $KSH_VERSION in
    *'PD KSH '*)
        [ -f "${KSH_ENV:-"$HOME"/.pdkshrc}" ] || return
        . "${KSH_ENV:-"$HOME"/.pdkshrc}"
        ;;
esac