Current File : //etc/profile
umask 022
PATH=/bin
HOME=`pwd`
PS1='$USER> '

MANPATH=/usr/man:/opt/RZmagick/share/man:/opt/RZperl518/man:/opt/RZpython2/share/man:/opt/RZpython3/share/man:/opt/RZruby/share/man
PAGER=less

export PATH HOME PS1 MANPATH PAGER

if [ -d /etc/profile.d ]; then
   for i in /etc/profile.d/*.sh; do
      if [ -r "$i" ]; then
        . "$i"
      fi
   done
   unset i
fi