首页 > 系统服务 > 详细

linux 系统文件之/etc/profile

时间:2020-12-21 18:13:38      阅读:31      评论:0      收藏:0      [点我收藏+]

vim /etc/profile

 

# 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    %%依次执行 /etc/profile.d/ 目录下的.sh 文件
    fi
  done
  unset i
fi

 

linux 系统文件之/etc/profile

原文:https://www.cnblogs.com/shessh/p/14160321.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!