1 # /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
2 # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
4 if [ "`id -u`" -eq 0 ]; then
5 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
7 PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
11 if [ "${PS1-}" ]; then
12 if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
13 # The file bash.bashrc already sets the default PS1.
15 if [ -f /etc/bash.bashrc ]; then
19 if [ "`id -u`" -eq 0 ]; then
27 if [ -d /etc/profile.d ]; then
28 for i in /etc/profile.d/*.sh; do
35 export LC_ALL="en_US.UTF-8"