错误:.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或者,按照与上面的其他语句相同的方式对其进行格式化。

相关内容