我正在尝试在 Bash 中创建一个变量以快速访问某些文件夹并将其保存到我的 bash_profile 脚本文件中。这就是脚本的样子
Documents=~/Documents
Apps=~/Library/Application\ Support/iPhone\ Simulator/5.1/Applications
运行脚本后,$Documents 变量有效,而 $Apps 无效。它说:
-bash: cd: /Users/myusername/Library/Application: No such file or directory
这是文件夹的路径:
/Users/myusername/Library/Application Support/iPhone Simulator/5.1/Applications
我应该如何逃离空间?我使用 Vim 并输入“cd $Apps”。