加载 /etc/profile 时发现错误,Ubuntu 20.04

加载 /etc/profile 时发现错误,Ubuntu 20.04

/etc/profile 错误

每次我启动并登录帐户时,在进入桌面屏幕之前,我都会收到此错误消息。我尝试查找 stackoverflow 和 askubuntu,但都与我的错误不同。

这是我的 /etc/profile 的代码

# /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

我甚至尝试使用命令执行该文件

$ . /etc/profile

但它传达的信息与图片所示相同。

/etc/profile 错误2

相关内容