CentOS误删 /etc/profile 的内容(默认,初始配置)

刚刚在装java环境变量时,由于不熟悉vi编辑器,导致误删了一些原本的内容。找到头大都没看到初始的一些配置。。后来找到了一个Ubuntu的,试了一下好像也可以。
现将原文件删除,后添加以下内容。

# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).


if [ "$PS1" ]; then
  if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
    # The file bash.bashrc already sets the default PS1.
    # PS1='\h:\w\$ '
    if [ -f /etc/bash.bashrc ]; then
      . /etc/bash.bashrc
    fi
  else
    if [ "`id -u`" -eq 0 ]; then
      PS1='# '
    else
      PS1='$ '
    fi
  fi
fi


if [ -d /etc/profile.d ]; then
  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi 

你可能感兴趣的:(linux)