etc/profile文件分析

# /etc/profile
# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc
pathmunge () {                                  #定義pathmunge函數,函數的做用是將一個路徑添加到PATH變量中,若是PATH變量中已有此路徑則不做操做
    if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
       if [ "$2" = "after" ] ; then
          PATH=$PATH:$1
       else
          PATH=$1:$PATH
       fi
    fi
}
# ksh workaround
if [ -z "$EUID" -a -x /usr/bin/id ]; then   #檢查變量EUID,若是爲NULL且/usr/bin/id可執行,則初始化變量EUID和UID
    EUID=`id -u`
    UID=`id -ru`
fi
# Path manipulation
if [ "$EUID" = "0" ]; then                #判斷,若是是root用戶,則將/sbin /usr/sbin /usr/local/sbin添加到PATH變量中
    pathmunge /sbin
    pathmunge /usr/sbin
    pathmunge /usr/local/sbin
fi
# No core files by default
ulimit -S -c 0 > /dev/null 2>&1         #經過 -c 0參數,設置系統默認狀況下不產生core文件
if [ -x /usr/bin/id ]; then         #經過/usr/bin/id命令,初始化變量USER LOGNAME MAIL
    USER="`id -un`"
    LOGNAME=$USER
    MAIL="/var/spool/mail/$USER"
fi
HOSTNAME=`/bin/hostname`                 #初始化HOSTNAME
HISTSIZE=1000                            #表示當輸入history命令時,最多顯示多少命令
if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then   #初始化INPUTRC變量,若是用戶目錄下沒有.inputrc文件,將缺省使用/etc/inputrc
    INPUTRC=/etc/inputrc
fi
export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC  #將上邊初始化的幾個變量設爲環境變量
for i in /etc/profile.d/*.sh ; do             #執行/etc/profile.d/目錄下全部腳本文件
    if [ -r "$i" ]; then
        . $i
    fi
done
unset i                              #最後刪除此腳本中用到的變量和函數
unset pathmunge
 
經過上邊的簡要分析能夠大體明白,/etc/profile腳本主要是用來初始化一些基本的環境變量,並執行/etc/profile.d/目錄下的腳本引導系統進一步啓動

使 ls 能帶顏色顯示目錄
創建文件 /etc/profile.d/dircolor.sh,內容以下:
# Setup for /bin/ls to support color, the alias is in /etc/bashrc.
if [ -f "/etc/dircolors" ] ; then
 
            eval $(dircolors -b /etc/dircolors)

              if [ -f "$HOME/.dircolors" ] ; then
                              eval $(dircolors -b $HOME/.dircolors)
              fi
fi
alias ls='ls --color=auto'

修改 dircolor.sh 爲可執行模式
# cd /etc/profile.d
# chmod +x dircolor.sh

修改完畢後,從新登陸,使修改內容生效。

在 path 中增長新的目錄
創建文件 /etc/profile.d/addsbin.sh,內容以下:
# Functions to help us manage paths.  Second argument is the name of the
# path variable to be modified (default: PATH)
pathremove () {
              local IFS=':'
              local NEWPATH
              local DIR
              local PATHVARIABLE=${2:-PATH}
              for DIR in ${!PATHVARIABLE} ; do
                              if [ "$DIR" != "$1" ] ; then
                                  NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
                              fi
              done
              export $PATHVARIABLE="$NEWPATH"
}

pathprepend () {
              pathremove $1 $2
              local PATHVARIABLE=${2:-PATH}
              export $PATHVARIABLE="$1${!PATHVARIABLE:+:${!PATHVARIABLE}}"
}

pathappend () {
              pathremove $1 $2
              local PATHVARIABLE=${2:-PATH}
              export $PATHVARIABLE="${!PATHVARIABLE:+${!PATHVARIABLE}:}$1"
}

if [ $EUID -eq 0 ] ; then
              pathappend /sbin
              pathappend /usr/sbin
              pathappend /usr/local/sbin
              unset HISTFILE
fi

pathappend /usr/local/bin

修改 addsbin.sh 爲可執行模式
# cd /etc/profile.d
# chmod +x addsbin.sh

修改完畢後,從新登陸,使修改內容生效。

修改 Prompt
創建文件 /etc/profile.d/prompt.sh,內容以下:
# Setup a red prompt for root and a green one for users.
NORMAL="\[\e[0m\]"
RED="\[\e[1;31m\]"
GREEN="\[\e[1;32m\]"
if [[ $EUID == 0 ]] ; then
  PS1="$RED\u [ $NORMAL\w$RED ]# $NORMAL"
else
  PS1="$GREEN\u [ $NORMAL\w$GREEN ]\$ $NORMAL"
fi

修改 prompt.sh 爲可執行模式
# cd /etc/profile.d
# chmod +x prompt.sh

修改完畢後,從新登陸,使修改內容生效。

做用原理 這些文件可以發生做用,取決於 /etc/profile 的如下內容: # Load profiles from /etc/profile.d if test -d /etc/profile.d/; then       for profile in /etc/profile.d/*.sh; do               test -x $profile && . $profile       done       unset profile fi
相關文章
相關標籤/搜索