我在 Windows 下使用 ubuntu。我已将登录 shell 从 更改为bash
。tcsh
在 /etc/profile 中添加一些 PATH 环境后,我需要source
配置文件。我运行了
source /etc/profile
但它给了
Missing '}'.
即使在我删除了添加 PATH 命令行之后也是如此。我认为这是个错误,不是吗?我想修复它。现在我的/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
~
~