profile 611 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # /etc/profile - System-wide startup file for shells.
  3. #
  4. # Compose system path resetting the Input Field Separator
  5. IFS='
  6. '
  7. PATH="${PATH}:/usr/local/games:/usr/games:/opt/trinity/bin"
  8. # Default mask: remove write permission for group and other
  9. umask 022
  10. # Set basic primary prompt
  11. PS1='$PWD \$ '
  12. # Set default terminal type if unset
  13. test -n "${TERM+$TERM}" || TERM=linux
  14. # Set default classification and conversion of characters
  15. LC_CTYPE=C.UTF-8
  16. export PATH LC_CTYPE
  17. # Load profile(s)
  18. for script in /etc/profile.d/*.sh
  19. do
  20. if test -r "$script"
  21. then
  22. . "$script"
  23. fi
  24. done
  25. unset script