我试图在bash中声明一个数组,但是当代码运行时它说它找不到数组.我试图以几种不同的方式写出数组的声明,但似乎无论我如何声明它我都无法使它工作.我最初试图宣布它为:
candidate[1]= 0 candidate[2]= 0 candidate[3]= 0
返回的错误消息是:
votecalculation.sh: 13: candidate[1]=: not found votecalculation.sh: 14: candidate[2]=: not found votecalculation.sh: 15: candidate[3]=: not found
在此之后我尝试了另一种在线发现的解决方案
ARRAY=( 'can1' 'can2' 'can3' )
使用它时会返回此错误:
votecalculation.sh: 12: Syntax error: "(" unexpected
我是Bash的新手,我对阵列感到很困惑.我需要一些特定的方式来声明一个数组,还是我只是完全错了?
解决方法
#!/bin/bash myarray[0]=hello myarray[1]=world echo ${myarray[0]} echo ${myarray[1]}
保存到helloworld.bash
执行使用. ./helloword.bash