为什么 ~/ 在我的 Mac 上不起作用?

Ber*_*ith 3 mac terminal bash macos

如果我尝试cd ˜/它会响应:

-bash: "cd: ˜/: No such file or directory"
Run Code Online (Sandbox Code Playgroud)

我似乎也没有.bash_profileor .profile

Gor*_*son 15

那是错误的波浪号字符。你键入一个“小波浪”(Unicode的U + 02DC),当你想波形符纯ASCII(Unicode的U + 007E)。比较以下命令:

cd ~    # plain tilde: this works
cd ˜    # small tilde: doesn't work, because there's no file named "˜"
Run Code Online (Sandbox Code Playgroud)