# space separated
alphabets=("a" "b" "c" "d")
#To access any element by index
${alphabets[1]}
# to loop
for f in "${alphabets[@]}"
alphabets=("a" "b" "c" "d")
#To access any element by index
${alphabets[1]}
# to loop
for f in "${alphabets[@]}"
No comments:
Post a Comment