Precisa de ajuda com o erro encontrado na linha home / superuser / .profile 23

0

Durante a inicialização, logo depois de fazer login na minha conta, recebo uma mensagem de erro que diz:

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

Como resultado, a sessão não será configurada corretamente. Você deve corrigir o problema assim que possível.

Este é o texto que está localizado no meu /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
    
por Poopballoon12 02.01.2016 / 22:22

2 respostas

2

Remova os espaços ao redor do operador de atribuição = na linha 23:

export level="bandit9"

Para mais informações, leia o Guia de script de script avançado

    
por s3lph 02.01.2016 / 22:26
1
export level = "bandit9"

Você não deve ter espaços em torno de = . Deve ser:

export level="bandit9"

Embora eu não veja o ponto - você sobrescreve os valores de level imediatamente após.

    
por muru 02.01.2016 / 22:27