环境变量中的波形符扩展

发布于 2024-09-28 02:19:26 字数 277 浏览 2 评论 0原文

在我的 .sh 文件中,我有这个, cp $file $SOME_PATH ,而 $SOME_PATH 导出为 export SOME_PATH="~/path/to/path /”。但是当我运行这个 .sh 文件时,我收到错误消息,内容如下:不存在这样的“~/path/to/path/”。 我将 ~ 替换为 $HOME,然后错误就消失了。 那么波浪号是怎么回事?

提前致谢。

In my .sh file, I have this, cp $file $SOME_PATH, while $SOME_PATH is exported as export SOME_PATH="~/path/to/path/". But when I ran this .sh file, I got error message saying like no such "~/path/to/path/" exists.
I replaced ~ as $HOME, then the error was gone.
So what's up here with the tilde?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

影子是时光的心 2024-10-05 02:19:26

则使用,引用它

SOME_PATH=~/path/to/path/

如果路径有空格

SOME_PATH=~/"path with spaces"

use

SOME_PATH=~/path/to/path/

if you path have spaces, quote it

SOME_PATH=~/"path with spaces"
还如梦归 2024-10-05 02:19:26

删除导出中的引号:

export SOME_PATH=~/path/to/path/

Remove the quotation marks on your export:

export SOME_PATH=~/path/to/path/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文