Exclua a cotação no final em .bashrc
.
Deve ser parecido com o seguinte:
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
umask u=rwx,g=rwx,o=
Estou tentando instalar um software no meu cluster da universidade por meio do login ssh do meu PC.
Então, eu primeiro login via ssh e, em seguida, de acordo com a documentação do software, eu adiciono as seguintes linhas no meu bash_profile
:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export PRIMAL="/projects/imputation_fam/primal"
export APPS="/projects/imputation_fam/apps"
source /projects/imputation_fam/primal/system/dots/bash_profile
Mas quando tento executar o ~/.bash_profile
após a edição acima, recebo o seguinte erro:
--bash: /homes/user/.bashrc: line 10: unexpected EOF while looking for matching '"'
--bash: /homes/user/.bashrc: line 12: syntax error: unexpected end of file
Qualquer ajuda seria muito apreciada.
Editar: o arquivo .bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
umask u=rwx,g=rwx,o=
"