Skip to content

Instantly share code, notes, and snippets.

@Overbryd
Forked from fs111/gist:5857739
Last active December 18, 2015 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Overbryd/5857940 to your computer and use it in GitHub Desktop.
Save Overbryd/5857940 to your computer and use it in GitHub Desktop.
# thing to parse
foo="1.2.3"
# spilt in array
IFS=. read -a arr <<< "$foo"
echo ${arr[0]}
# prints 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment