# /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
时间: 2024-04-13 10:25:14 浏览: 192
genshell:Genshell
这是一个系统级别的配置文件,用于设置Bourne shell(sh)和兼容的shell(如bash、ksh、ash等)的环境变量和命令提示符(PS1)。在文件中,首先检查是否定义了环境变量PS1,如果定义了,则根据不同的条件设置命令提示符。如果是bash且不是以/bin/sh启动的,则使用默认的PS1值。如果是root用户,则命令提示符为"#",否则为"$"。接下来,如果存在/etc/profile.d目录,则会加载该目录下的所有以.sh结尾的文件。
这个配置文件的作用是为各种兼容的shell提供统一的系统级别配置,可以在其中设置全局的环境变量和加载其他的配置文件。
阅读全文