aboutsummaryrefslogtreecommitdiff
path: root/ksh/profile.d/ksh.sh
blob: 61626b1aecdab4da16bc6fdd87d8bd614306c5e6 (plain) (blame)
1
2
3
4
5
6
# If ksh93 as a login shell decided to give ENV a bizarre value, quietly shunt
# it out of the way. This is probably not how I'm supposed to do this, but I
# can't find documentation as to why ksh93 chooses this value.
case $ENV in
    .sh.ENV) [ -f "$ENV" ] || unset ENV ;;
esac