prompt> message=(hi there how are you today)
-----------------------------------------------
아래와 같은 형태로도 초기화 가능
message[0]=hi This is the hard way
message[1]=there
message[2]=how
message[3]=are
message[4]=you
message[5]=today
-----------------------------------------------
prompt> echo ${message[1]}
there
prompt> echo ${message}
hi
prompt> echo ${message[*]}
hi there how are you today
prompt> echo ${message[@]}
hi there how are you today
prompt> echo ${#message[*]}
6
prompt> echo ${#message[@]}
6
prompt> data=([joe]=30 [mary]=25)
prompt> echo ${data[joe]}
30
prompt> echo ${data[mary]}
25