我正在尝试访问剪贴板,但是当我source ~/.bashrc
在终端输入时出现此错误:
bash: /home/taran/.bashrc: line 2: syntax error near unexpected token ('
bash: /home/taran/.bashrc: line 2:alias pbpaste='xclip -selection
clipboard -o'# ~/.bashrc: executed by bash(1) for non-login shells
我尝试在Gary Woodfine 的回答到命令行剪贴板访问。
的输出cat ~/.bashrc
为:
alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
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
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
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
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
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$//'\'')"'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
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
这是在 Ubuntu 19.04 上。有人能帮我解决这个问题吗?
答案1
mook765 完全正确关于问题的原因,该答案中提出的解决方案修复了语法错误,但我建议您以不同的方式解决它。
将别名定义放在里面是可以的.bashrc
,但最好不要将它们(或任何东西)放在该文件的最顶部。
我们倾向于认为.bashrc
仅由交互式 shell 提供,但事实并非如此。非交互式远程 shell(如果 bash 识别它们) 也来源.bashrc
。因此Ubuntu 的默认设置.bashrc
1包含此代码:2
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
基本上,您放入的所有内容.bashrc
(包括但不限于别名定义)都应放在该代码的下方。只有在有明确理由的情况下,您才应该将自己的代码放在该代码上方,这种情况很少见。
您可以将别名定义放在该代码下方的任何位置,但我建议将它们放在文件的最末端。或者您可能更愿意将它们放在文件中某些现有别名定义附近。或者您可能更愿意将它们放在单独的文件中~/.bash_aliases
,如果该文件不存在,您可以创建该文件。3任何选择都可以。
以下是将自己的代码放入其中产生的奇怪和意想不到的影响的常见例子之一多于交互性检查可以有。当代码产生输出时,就会出现这个特定的问题,而这不应该发生在别名定义中。(别名在使用时当然可以扩展为产生输出的命令,但语法正确的别名定义不应该产生输出,除非将选项-p
传递给alias
。)我不期望别名定义通常即使在非交互式 shell 中运行也会导致问题。非交互式 shell 默认不执行别名扩展(尽管这只是默认设置)。但是,如果它们最终产生了意想不到的效果,很可能没人会想到要检查这一点。
诚然,这只是避免将别名定义放在交互性检查之上的一个薄弱理由.bashrc
。但是,由于这样做与将它们放在文件中的任何其他位置相比绝对没有任何好处,因此我建议遵循一般方法,即仅将代码放在您故意检查的上方打算在非交互式远程 shell 中运行。
另一个有趣的方面是为什么这是一个语法错误:
alias pbpaste='xclip -selection clipboard -o'# ~/.bashrc: executed by bash(1) for non-login shells.
#
开始注释,注释可以跟随命令。但是,#
当该字符出现在较长的单词中时,它并不具有开始注释的效果,除非作为该单词的第一个字符。(从这个意义上来说,“单词”包括以下内容pbpaste='xclip -selection clipboard -o'#
:由于引用.) 以下文本原本是注释,但被当作alias
内置命令的附加参数。但在解析它们时,由于意外出现了 而出错(
,它对 shell 来说有特殊含义,但在该上下文中却毫无意义。结果是alias
内置命令实际上从未运行,而是出现语法错误。
所以,实际上,只需编辑一个字符就可以修复语法错误'
,方法是在该行的和字符之间添加一个空格#
。但如上所述,我建议更进一步,将别名定义移到文件中更低的位置。
1.bashrc
只要您没有修改该文件,就可以在 上查看 Ubuntu 中的默认文件/etc/skel/.bashrc
。创建用户时,该文件会被复制到用户的主目录中。与 Ubuntu 中的许多文件一样,该文件与 Debian(Ubuntu 的衍生发行版)相比几乎没有变化。本文中的建议适用于 Debian 和 Ubuntu 中的 Bash,但不一定适用于所有 GNU/Linux 系统中的 Bash(无需修改)。
2也有可能,虽然很少见,但可以作为非交互式登录 shell 启动bash
。与交互式登录 shell 一样,此类 shell 会~/.profile
自动获取源代码,~./profile
Ubuntu 中的默认 shell 会明确获取源代码~/.bashrc
。除了防止在非交互式远程 shell 中意外执行外,将您的添加放在~/.bashrc
交互性检查下方还可以防止它在非交互式登录 shell 的奇怪情况下意外执行。
3Ubuntu 默认.bashrc
检查是否~/.bash_aliases
存在 ( [ -f ~/.bash_aliases ]
),如果存在则获取它 ( . ~/.bash_aliases
)。您发布的代码验证了您修改的.bashrc
文件确实执行了这些操作 - 看起来唯一的变化是您在顶部添加的代码。
答案2
警告在第二行:
alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'# ~/.bashrc: executed by bash(1) for non-login shells.
那应该是:
alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'
# ~/.bashrc: executed by bash(1) for non-login shells.
看起来您Enter输入第二个别名后忘记了点击,导致在同一行中# ~/.bash...
直接跟在定义后面。如果没有前面的空格,shell 无法将其解释为注释,而是将其解释为命令参数的一部分。alias
# ~/.bash...
alias
我还建议~/.bash_aliases
在执行时将别名放在文件中~/.bashrc
,这样您就不需要编辑~/.bashrc
并最终弄乱它。
如果您坚持要在中放置别名~/.bashrc
,请将其添加到文件末尾。
如需深入了解此主题,请参阅Eliah 的精彩回答回答你的问题。