Skip to content

Instantly share code, notes, and snippets.

@odadoda
Last active August 29, 2015 13:56
Show Gist options
  • Save odadoda/9270387 to your computer and use it in GitHub Desktop.
Save odadoda/9270387 to your computer and use it in GitHub Desktop.
Bash array operations
# Print the third value in the array
echo ${MY_ARRAY[2]}
# To print everyting in the array:
echo ${MY_ARRAY[@]}
# Get array length
echo ${#MY_ARRAY[@]}
# Add more elements
MY_ARRAY=${“$MY_ARRAY[@]” “Seig” “Gjedde”}
# Remove element from the array
unset${MY_ARRAY[3]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment