需要帮助解决 home/superuser/.profile 第 23 行中的错误

需要帮助解决 home/superuser/.profile 第 23 行中的错误

在启动过程中,我刚刚登录我的帐户,就收到一条错误消息:

Error found when loading /home/superuser/.profile:
/home/superuser/.profile line 23: export: '=': not a valid identifier

因此会话将无法正确配置。您应尽快修复此问题。

以下是位于我的中的文本/home/superuser/.profile

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
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
export level = "bandit9"
level=bandit9
level=bandit13
level=bandit13

答案1

=删除第 23 行赋值运算符周围的空格:

export level="bandit9"

如需了解更多信息,请阅读高级 Bash 脚本指南

答案2

export level = "bandit9"

周围不应该有空格=。应该是:

export level="bandit9"

level虽然我不明白这一点 – 但你随后立即覆盖了值。

相关内容