Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Last active January 3, 2016 08:19
Show Gist options
  • Select an option

  • Save coderofsalvation/8434902 to your computer and use it in GitHub Desktop.

Select an option

Save coderofsalvation/8434902 to your computer and use it in GitHub Desktop.
removes decimals from number(strings)
# removes decimals from number(strings)
# usage: echo $(float2integer 1.02) (output: 1)
# @param integer (piped)
float2integer(){
printf "${1/\.*/}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment