EOF -6ren">
gpt4 book ai didi

bash - 什么是 bash <<< 的 POSIX shell 等价物

转载 作者:行者123 更新时间:2023-11-29 09:01:20 25 4
gpt4 key购买 nike

我有一个看起来像这样的变量:

msg="newton apple tree"

我想将这些单词中的每一个分配到单独的变量中。这在 bash 中很容易做到:

read a b c <<< $msg

在 POSIX shell 中是否有紧凑、可读的方法来执行此操作?

最佳答案

here 字符串只是单行 here 文档的语法糖:

$ msg="foo * bar"
$ read a b c <<EOF
> $msg
> EOF
$ echo "$a"
foo
$ echo "$b"
*
$ echo "$c"
bar

关于bash - 什么是 bash <<< 的 POSIX shell 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26849247/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com