根据
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
功能,则不能使用数组.
我担心你的引用是错误的.可悲的是,并非您在互联网上找到的所有内容都是正确的.