在 ubuntu 20.04 上加载 .profile 时出错

在 ubuntu 20.04 上加载 .profile 时出错

昨天我修改了 .profile 文件,使其包含 go path。它看起来如下:

if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi

GOPATH="$HOME/go"
PATH="$PATH:$GOPATH/bin"

当我下次运行我的笔记本电脑时,它会显示一个对话框,提示第 1 行有错误。

我的 .profile 文件有什么问题?

相关内容