aboutsummaryrefslogtreecommitdiff
path: root/yash/yashrc
blob: a731c80bafdc95895ce880f3203e113f004691b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Load POSIX interactive shell startup files, because Yash won't do it if not
# invoked as sh(1)
[ -e "$ENV" ] && . "$ENV"

# Load Bash-specific startup files
for sh in "$HOME"/.yashrc.d/*.yash ; do
    [ -e "$sh" ] && . "$sh"
done
unset -v sh