符合POSIX标准的shell中的数组

根据 this reference sheet on hyperpolyglot.org,可以使用以下语法来设置数组.
i=(1 2 3)

但我得到一个错误,破折号是Ubuntu上/ bin / sh的认值,应该符合POSIX标准.

# Trying the Syntax with dash in my terminal
> dash -i
$i=(1 2 3)
dash: 1: Syntax error: "(" unexpected
$exit

# Working fine with bash
> bash -i
$i=(1 2 3)
$echo ${i[@]}
1 2 3
$exit

参考表是误导性的还是错误的?
如果是,那么定义数组或列表并且符合POSIX的正确方法是什么?

Posix不指定数组,因此如果限制为Posix shell功能,则不能使用数组.

我担心你的引用是错误的.可悲的是,并非您在互联网上找到的所有内容都是正确的.

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...