You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is an example of an array , a variable directly followed by '='that is directly followed by '(' and closed with a ')' with a space between words in the '()'.
LIST=(one two three four five)
# To call all the words use the '@' symbol to get the first word use '0' to get the second use '1' etc...
echo"${LIST[@]}"
# Read command just used to hold user prompt open for the example.