12345678910111213141516171819202122232425262728293031323334 |
- #
- # /etc/profile - System-wide startup file for shells.
- #
- # Compose system path resetting the Input Field Separator
- IFS='
- '
- PATH="${PATH}:/usr/local/games:/usr/games:/opt/trinity/bin"
- # Default mask: remove write permission for group and other
- umask 022
- # Set basic primary prompt
- PS1='$PWD \$ '
- # Set default terminal type if unset
- test -n "${TERM+$TERM}" || TERM=linux
- # Set default classification and conversion of characters
- LC_CTYPE=C.UTF-8
- export PATH LC_CTYPE
- # Load profile(s)
- for script in /etc/profile.d/*.sh
- do
- if test -r "$script"
- then
- . "$script"
- fi
- done
- unset script
|