/dev/axe 发表于 2005-3-14 13:22:59

我的终端出了毛病。来看看

我的终端再安装企鹅输入法(代码包3.1)后,成了这个样子
我好象修改了这个文件/etc/bashrc

现在这个文件的内容是这样的


# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# by default, we want this to get set.
# Even for non-interactive, non-login shells.
if [ "`id -gn`" = "`id -un`" -a `id -u` -gt 99 ]; then
        umask 002
else
        umask 022
fi

# are we an interactive shell?
if [ "$PS1" ]; then
    if [ -x /usr/bin/tput ]; then
      if [ "x`tput kbs`" != "x" ]; then # We can't do this with "dumb" terminal
      stty erase `tput kbs`
      elif [ -x /usr/bin/wc ]; then
      if [ "`tput kbs|wc -c `" -gt 0 ]; then # We can't do this with "dumb" terminal
          stty erase `tput kbs`
      fi
      fi
    fi
    case $TERM in
        xterm*)
                if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
                        PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
                else
                  PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
                fi
                ;;
        screen)
                if [ -e /etc/sysconfig/bash-prompt-screen ]; then
                        PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen
                else
                PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\033\\"'
                fi
                ;;
        *)
                [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default
          ;;

    esac~/.bashrc
    # Turn on checkwinsize
    shopt -s checkwinsize
    [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "

    if [ "x$SHLVL" != "x1" ]; then # We're not a login shell
      for i in /etc/profile.d/*.sh; do
          if [ -r "$i" ]; then
                . $i
          fi
        done
    fi
fi
vim:ts=4:sw=4

红色的部分可能是错误行,终端提示的是一个语法错误在意外的新行

哪为帮忙把正常的/etc/bashrc上传一下。谢谢

/dev/axe 发表于 2005-3-14 13:24:47

我的系统是rh es 3,
内核版本2.4
不是虚拟机安装的

hew 发表于 2005-3-14 22:25:04

# Turn on checkwinsize
      shopt -s checkwinsize
      [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "

      if [ "x$SHLVL" != "x1" ]; then # We're not a login shell
          for i in /etc/profile.d/*.sh; do
          if [ -r "$i" ]; then
            . $i
          fi
      done
      unset i
      fi
fi
# vim:ts=4:sw=4

我的。

/dev/axe 发表于 2005-3-15 18:02:15

esac~/.bashrc
# Turn on checkwinsize
shopt -s checkwinsize
[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "

if [ "x$SHLVL" != "x1" ]; then # We're not a login shell
for i in /etc/profile.d/*.sh; do
if [ -r "$i" ]; then
. $i
fi
done
fi
fi
vim:ts=4:sw=4



花了2个小时,找到问题了。正确的是


esac
# Turn on checkwinsize
shopt -s checkwinsize
[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "

if [ "x$SHLVL" != "x1" ]; then # We're not a login shell
for i in /etc/profile.d/*.sh; do
if [ -r "$i" ]; then
. $i
fi
done
fi
fi
#vim:ts=4:sw=4

有点晕。。。
页: [1]
查看完整版本: 我的终端出了毛病。来看看