首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Bashrc配置:意外的EOF

Bashrc配置:意外的EOF
EN

Stack Overflow用户
提问于 2017-06-14 19:41:42
回答 1查看 124关注 0票数 0

我正在做我的第一个bashrc配置,我在网上搜索示例,我试图这样做,但它给出了这些错误:

我删除了颜色代码以获得更好的阅读效果。

bash: /home/filippo/.bashrc:第228行:意外标记附近出现语法错误`)‘

bash: /home/filippo/.bashrc:第228行:`fi‘)$bash$PathShortcut$Color_Off’\$ ";\‘

代码语言:javascript
复制
HISTCONTROL=ignoreboth

shopt -s histappend

HISTSIZE=1000
HISTFILESIZE=2000

shopt -s checkwinsize

[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
    color_prompt=yes
    else
    color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi

alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

if [ -f ~/.git-prompt.sh ]; then
    . ~/.git-prompt.sh
fi

if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi

Color_Off="\[\033[0m\]" # Text Reset

Time12h="\t"
Time12a="\@"
PathShort="\W"
PathFull="\w"
NewLine="\n"1
Jobs="\j"

export PS1=$BGreen'\u@\h'$Color_Off'$(git branch &>/dev/null;\
if [ $? -eq 0 ]; then \
    echo "$(echo `git status` | grep "nothing to commit" > /dev/null 2>&1; \
    if [ $? -eq 0 ]; then \
        # @4 - Clean repository - nothing to commit
        echo "'$Green'"$(__git_ps1 " (%s)"); \
    else \
        echo "$(echo `git status` | grep "to be committed" > /dev/null 2>&1; \
        if [ $? -eq 0 ]; then
            echo "'$IPurple'"$(__git_ps1 " {%s}"); \
        else \
            # @5 - Changes to working tree
            echo "'$IRed'"$(__git_ps1 " {%s}"); \
        fi)
    fi) '$BYellow$PathShort$Color_Off'\$ "; \
else \
    # @2 - Prompt when not in GIT repo
    echo " '$BIBlue$PathShort$Color_Off'\$ "; \
fi)'
EN

回答 1

Stack Overflow用户

发布于 2017-06-14 19:59:41

*)返回;;

return:只能从函数或源脚本‘return’

要查找更多错误,请使用以下命令运行脚本:

代码语言:javascript
复制
bash -x script.sh
票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/44543788

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档