실행하면 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
또는 위의 다른 명령문과 동일한 방식으로 형식을 지정하십시오.