qi: doc: added 'Order files' section to the manual
[dragora.git] / archive / etc / profile
blob8ee777dfc0ff49ee6914e8850ba1f9f050776eee
2 # /etc/profile - System-wide startup file for shells.
5 # Compose the system path, resetting the value of $IFS
6 IFS='
7         '
8 PATH=${PATH}:/usr/local/games:/usr/games
10 # Remove write permission for group and other
11 umask 022
13 # Set basic primary prompt
14 PS1='$PWD \$ '
16 # Set default terminal type if unset
17 test -n "${TERM+$TERM}" || TERM=linux
19 # Default classification and conversion of characters
20 LC_CTYPE=C.UTF-8
22 export PATH LC_CTYPE
24 # Load profiles
25 for file in /etc/profile.d/*.sh
27     test -r "$file" && . "$file"
28 done
29 unset file