9d5844c
#
9d5844c
# /etc/kshrc is sourced in interactive shells.  It
9d5844c
# should contain commands to set up aliases, functions,
9d5844c
# options, key bindings, etc.
9d5844c
#
9d5844c
9d5844c
# Set prompts
9d5844c
#PROMPT='[%n@%m]%~%# '    # default prompt
9d5844c
#RPROMPT=' %~'     # prompt for right side of screen
9d5844c
9d5844c
_src_etc_profile_d()
9d5844c
{
9d5844c
    # from zshrc, with ksh fixes
9d5844c
    if [[ ! -o login ]]; then # We're not a login shell
9d5844c
        for i in /etc/profile.d/*.sh; do
9d5844c
	    if [ -r "$i" ]; then
9d5844c
	        . $i
9d5844c
	    fi
9d5844c
        done
9d5844c
        unset i
9d5844c
    fi
9d5844c
}
9d5844c
_src_etc_profile_d
9d5844c
9d5844c
unset -f _src_etc_profile_d