#ident "@(#)profile 1.19 01/03/13 SMI" /* SVr4.0 1.3 */ # The profile that all logins get before using their own .profile. trap "" 2 3 export LOGNAME PATH if [ "$TERM" = "" ] then if /bin/i386 then TERM=sun-color else TERM=sun fi export TERM fi # Login and -su shells get /etc/profile services. # -rsh is given its environment in its .profile. case "$0" in -sh | -ksh | -jsh | -bash) if [ ! -f .hushlogin ] then /usr/sbin/quota # Allow the user to break the Message-Of-The-Day only. trap "trap '' 2" 2 /bin/cat -s /etc/motd trap "" 2 /bin/mail -E case $? in 0) echo "You have new mail." ;; 2) echo "You have mail." ;; esac fi esac umask 022 trap 2 3 # Lancaster additions if [ -z "$MANPATH" ] then MANPATH=/usr/share/man:/usr/local/man export MANPATH fi if [ -z "$EDITOR" ] then EDITOR=/bin/vi export EDITOR fi #if [ -z "$LD_LIBRARY_PATH" ] #then # LD_LIBRARY_PATH=/usr/lib:/usr/local/lib # export LD_LIBRARY_PATH #fi # #if [ -z "$LD_LIBRARY_PATH_64" ] #then # LD_LIBRARY_PATH_64=/usr/lib/sparcv9:/usr/local/lib/sparcv9 # export LD_LIBRARY_PATH_64 #fi # #for x in /usr/openwin/bin /usr/ccs/bin /usr/sbin /usr/local/bin #do # expr :$PATH: : ".*:$x:.*" >/dev/null # [ $? = 1 -a -d $x ] && PATH=$x:$PATH #done for i in /etc/profile.d/*.sh do [ -x $i ] && . $i done unset i