0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

zsh-パスの書き方について(ダブルクオート)

Last updated at Posted at 2022-01-26

ダブルクオートの有無について

経緯

LaravelのPATHを通そうとした際に、ダブルクオーテーションで囲む書き方とそうでない書き方、何が違うのがわかりませんでした。
質問させていただいたところ、わかりやすい回答をいただいたので記しておきます。
回答いただいた皆様、ありがとうございました!
@uasi 様の回答を参照

①ダブルクオート無

export PATH=~/.composer/vendor/bin:$PATH

~ はまずホームディレクトリを指す文字列に展開されます。
よって、

export PATH=/Users/ユーザー名/.composer/vendor/bin:$PATH

と書いたのと同じことになります。

②ダブルクオート有

export PATH="~/.composer/vendor/bin:$PATH"

と書くと、 ~ は展開されず、文字通り ~ という名前のディレクトリを指すことになります。この名前のディレクトリは普通存在しないのでパスは通りません。

また、 ~ の代わりにホームディレクトリを指す変数 $HOME を使うこともできます。これはダブルクォートの有無にかかわらず展開されます。

export PATH=$HOME/.composer/vendor/bin:$PATH
export PATH="$HOME/.composer/vendor/bin:$PATH"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?