Bourne:如何在变量中保存字符串?

发布于 2024-09-10 01:54:11 字数 139 浏览 5 评论 0原文

我正在尝试在 Bourne 中执行以下行:

LIST="-foo, -bar, baz"

但是,我收到错误:

-bar: command not found

任何人都可以帮我解决这个问题吗?谢谢!

I'm trying to execute the following line in Bourne:

LIST="-foo, -bar, baz"

However, I am getting an error:

-bar: command not found

Can anyone help me figure this out? Thanks!

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

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

发布评论

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

评论(1

泛泛之交 2024-09-17 01:54:11

如果字符串实际上没有被引用,就会发生这种情况。

您有可能正在执行 LIST=$somevariable 而不是您在问题中所写的内容吗?因为那样你应该写 LIST="$somevariable"

This happens if the string is in fact not quoted.

Any chance you are doing LIST=$somevariable instead of what you wrote in the question? Because then you should write LIST="$somevariable" instead.

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