bash_profile 실행 시 예기치 않은 EOF 오류가 발생했습니다.

bash_profile 실행 시 예기치 않은 EOF 오류가 발생했습니다.

내 PC에서 SSH 로그인을 통해 대학 클러스터에 소프트웨어를 설치하려고 합니다. 그래서 먼저 SSH를 통해 로그인한 후 소프트웨어 설명서에 따라 다음 줄을 추가했습니다 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

그러나 위의 편집 후에 실행하려고 하면 ~/.bash_profile다음 오류가 발생합니다.

--bash: /homes/user/.bashrc: line 10: unexpected EOF while looking for   matching `"'
--bash: /homes/user/.bashrc: line 12: syntax error: unexpected end of file

어떤 도움이라도 대단히 감사하겠습니다.

편집: .bashrc 파일

  # .bashrc

  # Source global definitions
     if [ -f /etc/bashrc ]; then
         . /etc/bashrc
     fi

  # User specific aliases and functions
     umask u=rwx,g=rwx,o=
     "

답변1

..bashrc

다음과 같아야 합니다.

# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
     . /etc/bashrc
fi
# User specific aliases and functions
umask u=rwx,g=rwx,o=

관련 정보