环境变量中的波形符扩展
在我的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
则使用,引用它
如果路径有空格
use
if you path have spaces, quote it
删除导出中的引号:
Remove the quotation marks on your export: