Skip to main content
missing quotes
Source Link
Stéphane Chazelas
  • 586.3k
  • 96
  • 1.1k
  • 1.7k

The array assignment is correct, you should check the printing part.

variable="Hello there" array[0]=$variable echo $"${array[0]}" 

output

Hello there 

The array assignment is correct, you should check the printing part.

variable="Hello there" array[0]=$variable echo ${array[0]} 

output

Hello there 

The array assignment is correct, you should check the printing part.

variable="Hello there" array[0]=$variable echo "${array[0]}" 

output

Hello there 
Source Link
Kannan Mohan
  • 3.3k
  • 2
  • 20
  • 16

The array assignment is correct, you should check the printing part.

variable="Hello there" array[0]=$variable echo ${array[0]} 

output

Hello there