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