home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Guests / GreekMarble / .profile next >
Text File  |  2017-09-21  |  560b  |  31 lines

  1. #
  2. # @(#)local.profile 1.4    93/09/15 SMI
  3. #
  4. stty istrip
  5. PATH=/usr/bin:/usr/ucb:/etc:.
  6. export PATH
  7.  
  8. #
  9. # If possible, start the windows system
  10. #
  11. if [ `tty` = "/dev/console" ] ; then
  12.     if [ "$TERM" = "sun" -o "$TERM" = "AT386" ] ; then
  13.  
  14.         if [ ${OPENWINHOME:-""} = "" ] ; then
  15.             OPENWINHOME=/usr/openwin
  16.             export OPENWINHOME
  17.         fi
  18.  
  19.         echo ""
  20.         echo "Starting OpenWindows in 5 seconds (type Control-C to interrupt)"
  21.         sleep 5
  22.         echo ""
  23.         $OPENWINHOME/bin/openwin
  24.  
  25.         clear        # get rid of annoying cursor rectangle
  26.         exit        # logout after leaving windows system
  27.  
  28.     fi
  29. fi
  30.  
  31.