Reconfigure Trinity options, paths, and other adjustments
[dragora.git] / archive / etc / profile
blobfd526615cdf438cf59e818715448d44e7a4188a9
2 # /etc/profile - System-wide startup file for shells.
5 # Compose system path resetting the Input Field Separator
6 IFS='
7         '
8 PATH="${PATH}:/usr/local/games:/usr/games"
10 # Default mask: 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 # Set default classification and conversion of characters
20 LC_CTYPE=C.UTF-8
22 export PATH LC_CTYPE
24 # Load profile(s)
25 for script in /etc/profile.d/*.sh
27     if test -r "$script"
28     then
29         . "$script"
30     fi
31 done
32 unset -v script