Bash 构造从命令中提取两个值,例如:“--option=false”?

发布于 2024-12-11 04:12:00 字数 211 浏览 0 评论 0原文

有谁知道 bash 构造,您在其中指定定界符并获得两个变量( $@ 或 $! 或我认为类似的东西)值?

例如:
--option=false 应使用“=”分隔符指定,并且在一个变量中将存储单词“option”,而在另一个变量中存储单词“false”。有人知道吗?

PS:请不要提供 sed、awk 或 IFS 解决方案。我知道它们,但我要求特定的 bash 构造:)

Does anyone know the bash construct where you specify the delimeter and you get in two variables ( $@ or $! or something like that I think ) the values?

For example:
--option=false should be specified with '=' delimeter and in one variable there will be the word 'option' whereas in the other variable the word 'false' is stored. Anyone know?

P.S.: No sed, awk or IFS solutions please. I am aware of them but I am requesting the specific bash construct :)

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

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

发布评论

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

评论(2

地狱即天堂 2024-12-18 04:12:00

正如 Bash 手册页中所示,您可以使用参数扩展来解决您的问题。

# split first argument on equal sign (left=right)    
left=${1%%=*}
right=${1#*=}

As found in the Bash man page, you can use Parameter Expansion to solve your problems.

# split first argument on equal sign (left=right)    
left=${1%%=*}
right=${1#*=}
回忆凄美了谁 2024-12-18 04:12:00

我相信GNU getopt程序在这里是合适的(当然,如果可用的话)。
它支持长选项。

I believe the GNU getopt program is appropriate here (if available, of course).
It supports long options.

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