I am trying to output the values of array element but I am getting weird output. Please have a look at it and help me solve it. Thank you.
n=2
declare -a myarray[$n]
myarray[0]=hey
myarray[1]=hello
myarray[2]=bye
for i in ${myarray[@]}
do echo $i
doneOutput:
robin@robin-VirtualBox:~/lx$ sh array.sh
array.sh: 2: array.sh: declare: not found
array.sh: 3: array.sh: myarray[0]=hey: not found
array.sh: 4: array.sh: myarray[1]=hello: not found
array.sh: 5: array.sh: myarray[2]=bye: not found
array.sh: 6: array.sh: Bad substitution 2 Answers
declare is a bash shell builtin, and is not defined in the sh shell.
So, you must to run your script using the following command:
bash array.shOr add, the following shebang line at the start of your script:
#!/bin/bashBe sure that your script is exectutable:
chmod +x array.shAnd run it using the following command:
./array.sh 0 Your script is correct, but type:
./array.shinstead of sh array.sh
The difference between ./ and sh is explained here.