오류: .bash_profile의 "예기치 않은 파일 끝"

오류: .bash_profile의 "예기치 않은 파일 끝"

실행하면 source ~/.bash_profile다음 오류가 발생합니다.

line 14 syntax error: unexpected end of file

마지막 줄을 제거하려고 시도했지만 소용이 없었습니다.

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

if [ -f ~/.git-completion.bash ]; then
source ~/.git-completion.bash
fi

PS1='\[\e[0;36m\]\W\[\e[m\]\[\e[1;31m\]\$\[\e[m\]'
if [ "$PS1" ]; then PS1="[\e[0;36m]\W\n[\e[m][\e[1;31m]\$[\e[m]" fi
function gi() { curl -L -s https://www.gitignore.io/api/$@ ;}
export LSCOLORS=cxfxcxdxbxegedabagacad

답변1

세미콜론 누락:

if [ "$PS1" ]; then PS1="[\e[0;36m]\W\n[\e[m][\e[1;31m]\$[\e[m]" fi 

~해야 한다

if [ "$PS1" ]; then PS1="[\e[0;36m]\W\n[\e[m][\e[1;31m]\$[\e[m]"; fi

if또는 위의 다른 명령문과 동일한 방식으로 형식을 지정하십시오.

관련 정보