home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / base / root.16 / etc / stdprofile / stdprofile~
Text File  |  1998-08-19  |  978b  |  38 lines

  1. #ident    "@(#)adm:i386/cmd/.adm/stdprofile    1.2.1.1"
  2. #ident    "$Header: stdprofile 1.1 91/04/29 $"
  3. #    This is the default, standard profile provided to users.
  4. #    Users are expected to edit it to meet their own needs.
  5. #
  6. #    If you have a profile that is attempting to read from the
  7. #    terminal or is using the stty(1) command to set terminal 
  8. #    settings, you may find that GRAPHICAL LOGIN does not give
  9. #    you a desktop metaphor session.
  10. #
  11. #    To update your profile, you should surround any section
  12. #    that reads from the terminal or performs stty(1) commands
  13. #    with the following 'if' statement:
  14. #
  15. #    if [ "$XDM_LOGIN" != "yes" ]
  16. #    then
  17. #        :
  18. #        read from the terminal or stty(1) commands
  19. #    fi
  20.  
  21. if [ "$XDM_LOGIN" != "yes" ]
  22. then
  23.     if [ "`tty`" != "/dev/console" -o x${TERM} = "xansi" ]
  24.     then
  25.         echo "TERM=\c"
  26.         read TERM
  27.     fi
  28. fi
  29.  
  30. # PATH is set during the login sequence. To enhance your PATH
  31. #    while preserving the default settings, try:
  32. #
  33. # PATH=$PATH:"your_path"
  34. #
  35.  
  36. HZ=100
  37. export PATH TERM HZ
  38.