shell 脚本中路径中的空格
我有一个变量 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 bash 吗?您可以像这样用空格分配变量:(
请注意,设置值时不使用 $ 符号。)
并像这样引用它们:
Take it this is bash? You assign variables with spaces like this:
(Note you don't use the $ notation when setting a value.)
And reference them like this: