shell 脚本中路径中的空格

发布于 2024-11-26 19:27:04 字数 303 浏览 0 评论 0原文

我有一个变量 android="/media/New Volume_/android-sdk-linux_86"

我收到一条错误,说它找不到

我将其更改为 android="/media/New\ Volume_/android-sdk-linux_86"

的目录我仍然得到同样的错误。我什至尝试过

android="/media/'New Volume_'/android-sdk-linux_86" 我到处都使用“$android”...

我找不到错误,有人可以帮助我吗..

谢谢

I have a variable
android="/media/New Volume_/android-sdk-linux_86"

I get an error saying that it cannot find the directory

I changed it to android="/media/New\ Volume_/android-sdk-linux_86"

I still get the same error. I even tried

android="/media/'New Volume_'/android-sdk-linux_86"
and I am using "$android" everywhere ...

I am not able to find the error, can someone help me..

Thanks

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

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

发布评论

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

评论(1

痴情换悲伤 2024-12-03 19:27:04

这是 bash 吗?您可以像这样用空格分配变量:(

android="/media/New Volume_/android-sdk-linux_86"

请注意,设置值时不使用 $ 符号。)

并像这样引用它们:

cd "$android"

Take it this is bash? You assign variables with spaces like this:

android="/media/New Volume_/android-sdk-linux_86"

(Note you don't use the $ notation when setting a value.)

And reference them like this:

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