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で詰まったメモ

0
Posted at

再現方法

こんなコードを書いたとする

dest="~/Documents/hello"
echo 'hoge' > $dest

一見良さそうだけど、zsh: no such file or directory: ~/Documents/helloというエラーに叱られる

解決策1

dest="/Users/payashi/Documents/hello" # 絶対パスにする
echo 'hoge' > $dest
cat $dest # `hoge`と出力される

解決策2

dest=~/Documents/hello # クオーテーションで囲まない
echo 'hoge' > $dest
cat $dest # `hoge`と出力される

原因

クオーテーションで囲ってしまうと相対パスから絶対パスに変換できなくなる

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?