web-dev-qa-db-ja.com

.bashrcを編集した後の「予期しないトークンに近い構文エラー」

クリップボードにアクセスしようとしていますが、ターミナルに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にあります。誰かがこれを修正する方法を理解するのを手伝ってくれる?

11
taran

警告は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 同じ行のalias定義の直後に# ~/.bash...が続く2番目のエイリアスを入力した後。前にスペースがない場合、# ~/.bash...はシェルによるコメントとして解釈されず、aliasコマンドの引数の一部として解釈されます。

また、~/.bash_aliasesの実行時にソースとなるファイル~/.bashrcにエイリアスを配置することをお勧めします。これにより、~/.bashrcを編集して最終的には混乱させる必要がなくなります。

~/.bashrcにエイリアスを配置する場合は、ファイルの最後に追加してください。

このトピックの詳細については、質問の Eliahの優れた回答 を参照してください。

16
mook765

mook765は完全に正しい 問題の原因について、そしてその回答で提案された解決策は構文エラーを修正しますが、別の方法で解決することをお勧めします。

.bashrcにエイリアス定義を配置することは問題ありませんが、そのファイルの最上部にエイリアス定義(または何も)を配置しないことをお勧めします

.bashrcはインタラクティブなシェルによってのみ供給されると考える傾向がありますが、実際にはそうではありません。非対話型リモートシェル( bashがそれらを識別する場合 )も.bashrcをソースとします。 それが理由です Ubuntuのデフォルト.bashrc1 このコードが含まれています:2

# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

基本的に、.bashrcに入力するすべてのもの(エイリアスの定義を含むがこれに限定されない)は、その下に移動する必要があります。独自のコードをそのコードの上に配置するのは、めったにない理由がある場合に限ってください。

エイリアス定義はそのコードの下のどこにでも置くことができますが、ファイルの最後に置くことをお勧めします。または、ファイル内の既存の別名定義の近くに配置することもできます。または、別のファイル~/.bash_aliasesに置くことをお勧めします。このファイルは、存在しない場合に作成できます。3 これらの選択肢はどれも問題ありません。

独自のコードを配置する奇妙で予期しない効果の一般的な例の1つをここに示します対話性チェックで発生する可能性があります。 この特定の問題は、コードが出力を生成するときに発生しますエイリアス定義から。 (エイリアスを使用すると、もちろん、出力を生成するコマンドに展開できますが、-pオプションがaliasに渡されない限り、構文的に正しいエイリアス定義は出力を生成しません。通常、へのエイリアス定義は想定していません。 非対話型シェルで実行されている場合でも問題が発生します。とにかく、非対話型シェルはデフォルトでエイリアス拡張を実行しません(これは単なるデフォルトです)。しかし、彼らが予期しない効果を生み出してしまうのであれば、誰もそれをチェックしようとは思わないでしょう。

これは確かに、エイリアス定義を.bashrcの対話性チェックの上に置くことを避ける弱い理由にすぎません。ただし、ファイル内の他の場所に配置する場合と比較して、そうすることの利点はまったくないので、意図的に意図的にを実行して非インタラクティブで実行することを確認するコードのみを上に配置するという一般的なアプローチに従うことをお勧めしますリモートシェル。


これの他の興味深い側面は理由これは構文エラーでした:

alias pbpaste='xclip -selection clipboard -o'# ~/.bashrc: executed by bash(1) for non-login shells.

#はコメントを開始します。コメントはコマンドに従うことができます。 ただし、#文字は、より大きなWordに表示されたときに、そのWordの最初の文字を除いて、コメントを開始する効果はありません。(この意味で、 "Word"にはpbpaste='xclip -selection clipboard -o'#引用のために のようなものが含まれます。コメントとして意図された次のテキストは、aliasビルトインへの追加の引数として使用されます。ただし、これらの構文解析中にエラーが発生します。これは、(が予期せず存在するためです。これは、シェルにとって特別な意味がありますが、そのコンテキストでは意味がありません。その結果、aliasビルトインは実際には実行されず、代わりに構文エラーが発生します。

したがって、実際には、その行の'#文字の間にスペースを入れることにより、1文字の編集で構文エラーを修正できます。 。しかし、上記で詳述したように、私はさらに先に進み、ファイル内のエイリアス定義をずっと下に移動することをお勧めします。


1Ubuntuのデフォルトの.bashrcは、ファイルを変更していない限り、/etc/skel/.bashrcで表示できます。これは、ユーザーの作成時にユーザーのホームディレクトリにコピーされます。 Ubuntuの多くのファイルと同様に、このファイルはUbuntuの派生元のディストリビューションであるDebianから最小限変更されています。この投稿のアドバイスは、DebianおよびUbuntuのBashに適用されますが、すべてのGNU/LinuxシステムのBashを変更せずに適用されるとは限りません。

2まれにですがbashを非インタラクティブログインシェルとして起動することも可能です。インタラクティブログインシェルと同様に、このようなシェルは~/.profileを自動的にソースし、Ubuntuのデフォルトの~./profileは明示的に~/.bashrcをソースします。非対話型リモートシェルでの意図しない実行を防ぐことに加えて、~/.bashrcへの追加を対話型チェックの下に置くことで、非対話型ログインシェルの奇妙なケースで意図せずに実行されるのを防ぎます。

3Ubuntuのデフォルトの.bashrcは、~/.bash_aliasesが存在するかどうか([ -f ~/.bash_aliases ])を確認し、存在する場合はそれをソース(. ~/.bash_aliases)にします。投稿したコードは、変更された.bashrcファイルがこれらのアクションを実行することを確認します。これに対する唯一の変更は、上部に追加したコードのみのようです。

20
Eliah Kagan